From d3c4f7f513e770d879ca77d526c031d10c8b337d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Sch=C3=B6pflin?= Date: Tue, 19 Oct 2004 12:13:08 +0000 Subject: [PATCH] Added support for GCC on Tru64. [SVN r25781] --- v1/python.jam | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v1/python.jam b/v1/python.jam index 9d46bbae3..f9c01e25b 100644 --- a/v1/python.jam +++ b/v1/python.jam @@ -131,7 +131,11 @@ else if $(UNIX) if $(OS) = OSF { - PYTHON_PROPERTIES += <*><*>"-expect_unresolved 'Py*' -expect_unresolved '_Py*'" ; + local not-gcc-compilers = [ difference $(TOOLS) : $(gcc-compilers) ] ; + + PYTHON_PROPERTIES += + <$(not-gcc-compilers)><*>"-expect_unresolved 'Py*' -expect_unresolved '_Py*'" + <$(gcc-compilers)><*>"-Xlinker -expect_unresolved -Xlinker 'Py*' -Xlinker -expect_unresolved -Xlinker '_Py*'" ; } else if $(OS) = AIX {