$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Zbynek Winkler (zwin_at_[hidden])
Date: 2003-05-04 13:46:56
Hi. I've been playing with boost build this afternoon and I've added
"/nologo" options for the linker and library manager.
Zbynek
-- <zwin at robotika.cz> http://zw.matfyz.cz/ http://robotika.cz/ Faculty of Mathematics and Physics, Charles University, Prague, Czech Republic --------------040606060303030807030704 Content-Type: text/plain; name="msvc.jam.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="msvc.jam.patch" Index: tools/build/new/msvc.jam =================================================================== RCS file: /cvsroot/boost/boost/tools/build/new/msvc.jam,v retrieving revision 1.18 diff -u -r1.18 msvc.jam --- tools/build/new/msvc.jam 21 Apr 2003 00:35:36 -0000 1.18 +++ tools/build/new/msvc.jam 4 May 2003 18:43:51 -0000 @@ -200,13 +200,13 @@ actions link { - $(.LD) $(LINKFLAGS) /out:"$(<[1])" $(.implib)"$(<[2])" /LIBPATH:"$(LINKPATH)" "$(FINDLIBS:S=.lib)" $(USER_LINKFLAGS) @"$(>)" + $(.LD) /nologo $(LINKFLAGS) /out:"$(<[1])" $(.implib)"$(<[2])" /LIBPATH:"$(LINKPATH)" "$(FINDLIBS:S=.lib)" $(USER_LINKFLAGS) @"$(>)" } actions archive { if exist "$(<)" set _$(<:B)_="$(<)" - $(.LD) /lib /out:"$(<)" %_$(<:B)_% @"$(>)" + $(.LD) /lib /nologo /out:"$(<)" %_$(<:B)_% @"$(>)" } } else # CYGWIN --------------040606060303030807030704--