2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Pass /nologo to rc (#601)

Supported at least with Resource Compiler Version 6.1.7600.16385 that comes in
Windows SDK v7.0A, the oldest you could obtain nowadays.
This commit is contained in:
Nikita Kniazev
2020-05-11 03:55:24 +03:00
committed by GitHub
parent e382e3acb1
commit 72746a1444
2 changed files with 2 additions and 2 deletions

View File

@@ -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) ;
}

View File

@@ -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 : <embed-manifest> <embed-manifest-file> ;