From af1b75748ea1be67040d042e24eb91b14da41b9d Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 10 Jan 2003 16:22:05 +0000 Subject: [PATCH] Use HP-UX uname to determine if aCC(cc) is available. Add -Ae flag to acc. [SVN r16858] --- src/engine/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/build.sh b/src/engine/build.sh index 53f169523..e7f932726 100755 --- a/src/engine/build.sh +++ b/src/engine/build.sh @@ -67,6 +67,7 @@ Guess_Toolset () elif test_path KCC ; then BOOST_JAM_TOOLSET=kcc elif test_path bc++ ; then BOOST_JAM_TOOLSET=kylix elif test_path aCC ; then BOOST_JAM_TOOLSET=acc + elif test_uname HP-UX ; then BOOST_JAM_TOOLSET=acc # Test for "cc" as the default fallback. elif test_path cc ; then BOOST_JAM_TOOLSET=cc fi @@ -134,7 +135,7 @@ case $BOOST_JAM_TOOLSET in ;; acc) - BOOST_JAM_CC=cc + BOOST_JAM_CC=cc -Ae ;; cc)