Subject: Re: [boost] clang-win, again
From: Peter Dimov (lists_at_[hidden])
Date: 2018-10-30 14:40:34


degski wrote:
> I have this project-config.jam
>
> using clang-win : : :
>
> <compatibility>vc14
> <compileflags>-fmsc-version=1915
> <ranlib>"C:\\Program Files\\LLVM\\bin\\llvm-ranlib.exe"
> <archiver>"C:\\Program Files\\LLVM\\bin\\llvm-ar.exe"
> <rc>"C:\\Program Files (x86)\\Windows
> Kits\\10\\bin\\10.0.17763.0\\x64\\rc.exe"
> <compileflags>--target=x86_64-pc-win32
> <linkflags>--target=x86_64-pc-win32
> <linkflags>-fuse-ld=lld
> <linkflags>-flto=thin
> <architecture>x86
> <address-model>64
> <link>static
> <runtime-link>static
> ;

Yeah, you'll need to delete all that. Either just `using clang-win ;` or
nothing at all.

The quoting issue is interesting; I do quote the command, which quoting I
left from the previous clang-win.jam, but I don't quote the options such as
<archiver>, because msvc.jam doesn't either. It probably needs to be
consistent, but I'm not sure which way consistent.