From 69c242dca1c2f4524ff4b93cfd4a3d4cc2df4e17 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 12 May 2020 15:32:31 +0300 Subject: [PATCH] Add missing assembler options to clang-win.jam, to enable Context to build (#602) --- src/tools/clang-win.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/clang-win.jam b/src/tools/clang-win.jam index 1f950a352..94a8f5157 100644 --- a/src/tools/clang-win.jam +++ b/src/tools/clang-win.jam @@ -171,7 +171,8 @@ rule init ( version ? : command * : options * ) toolset.flags clang-win.compile .CC $(cond) : $(compiler) -m$(addr) ; toolset.flags clang-win.link .LD $(cond) : $(compiler) -m$(addr) /link "/incremental:no" "/manifest" ; - toolset.flags clang-win.compile .ASM $(cond) : $(assembler) -nologo ; + toolset.flags clang-win.compile .ASM $(cond) : $(assembler) -nologo -c -Zp4 -Cp -Cx ; + toolset.flags clang-win.compile .ASM_OUTPUT $(cond) : -Fo ; toolset.flags clang-win.archive .LD $(cond) : $(archiver) /nologo ; toolset.flags clang-win.link .MT $(cond) : $(manifest-tool) -nologo ; toolset.flags clang-win.compile .MC $(cond) : $(mc-compiler) ;