diff --git a/src/tools/clang-win.jam b/src/tools/clang-win.jam index 0e7a90332..1f950a352 100644 --- a/src/tools/clang-win.jam +++ b/src/tools/clang-win.jam @@ -175,7 +175,7 @@ rule init ( version ? : command * : options * ) 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) ; - toolset.flags clang-win.compile .RC $(cond) : $(resource-compiler) /nologo ; + toolset.flags clang-win.compile .RC $(cond) : $(resource-compiler) ; toolset.flags clang-win.compile .IDL $(cond) : $(idl-compiler) ; } diff --git a/src/tools/msvc.jam b/src/tools/msvc.jam index 871ea721c..154ddf65c 100644 --- a/src/tools/msvc.jam +++ b/src/tools/msvc.jam @@ -751,7 +751,7 @@ rule compile.rc ( targets + : sources * : properties * ) actions compile.rc { - $(.SETUP) $(.RC) -l 0x409 -U$(UNDEFS) -D$(DEFINES) -I"$(INCLUDES:W)" -fo "$(<:W)" "$(>:W)" + $(.SETUP) $(.RC) /nologo -l 0x409 -U$(UNDEFS) -D$(DEFINES) -I"$(INCLUDES:W)" -fo "$(<:W)" "$(>:W)" } toolset.uses-features msvc.link : ;