From d84dcff5a05ea04865860c903ee53237bb127365 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 8 Feb 2006 13:20:00 +0000 Subject: [PATCH] Fix a couple of bugs [SVN r32734] --- src/tools/tru64.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/tru64.jam b/src/tools/tru64.jam index 7442ee871..1e66d46d4 100644 --- a/src/tools/tru64.jam +++ b/src/tools/tru64.jam @@ -61,7 +61,7 @@ generators.register-c-compiler tru64.compile.c : C : OBJ : tru64 ; # No static linking as far as I can tell. # flags cxx LINKFLAGS static : -bstatic ; flags tru64.compile OPTIONS on : -g3 ; -flags tru64.compile OPTIONS.c++ off/on : -gall ; +flags tru64.compile OPTIONS off/on : -gall ; flags tru64.link OPTIONS on : -g ; flags tru64.link OPTIONS off : -s ; # FIXME: Can we just add '-shared' to link.dll rule below? @@ -127,7 +127,7 @@ actions link bind LIBRARIES actions link.dll bind LIBRARIES { - $(CONFIG_COMMAND) -qrtti -noimplicit_include $(OPTIONS) -o "$(<[1])" -L$(LIBPATH) "$(>)" "$(LIBRARIES)" -l$(FINDLIBS-ST) -l$(FINDLIBS-SA) -lm + $(CONFIG_COMMAND) -noimplicit_include $(OPTIONS) -o "$(<[1])" -L$(LIBPATH) "$(>)" "$(LIBRARIES)" -l$(FINDLIBS-ST) -l$(FINDLIBS-SA) -lm }