2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Use HP-UX uname to determine if aCC(cc) is available.

Add -Ae flag to acc.


[SVN r16858]
This commit is contained in:
Rene Rivera
2003-01-10 16:22:05 +00:00
parent 8f5dd44691
commit af1b75748e

View File

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