Make Sun Studio 12.3 default test target. 12.4 is broke at the moment

pull/186/head
Jeffrey Walton 2016-06-09 05:42:35 -04:00
parent dd60cfc61a
commit 5abdaa1cda
1 changed files with 3 additions and 3 deletions

View File

@ -96,10 +96,10 @@ fi
# Fixup
if [ "$IS_SOLARIS" -ne "0" ]; then
if [ -e "/opt/solarisstudio12.4/bin/CC" ]; then
CXX=/opt/solarisstudio12.4/bin/CC
elif [ -e "/opt/solarisstudio12.3/bin/CC" ]; then
if [ -e "/opt/solarisstudio12.3/bin/CC" ]; then
CXX=/opt/solarisstudio12.3/bin/CC
elif [ -e "/opt/solarisstudio12.4/bin/CC" ]; then
CXX=/opt/solarisstudio12.4/bin/CC
fi
fi
SUN_COMPILER=$($CXX -V 2>&1 | egrep -i -c "CC: Sun")