ICU-1407 Fix for Tru64 (OSF)

X-SVN-Rev: 6501
This commit is contained in:
George Rhoten 2001-10-30 20:03:50 +00:00
parent eedb17c39e
commit 6539a70a77

View File

@ -37,6 +37,7 @@ The following names can be supplied as the argument for platform:
SOLARISCC Use Sun's CC compiler on Solaris
SOLARISGCC Use the GNU C++ compiler on Solaris
SOLARISX86 Use Sun's CC compiler on Solaris x86
TRU64V5.1/CXX Use Copmaq's cxx compiler on Tru64 (OSF)
EOE
fi
@ -179,6 +180,12 @@ case $platform in
CC=gcc; export CC
CXX=g++; export CXX
;;
TRU64V5.1/CXX)
THE_OS="OSF1"
THE_COMP="Compaq cxx"
CC=cxx; export CC
CXX=cxx; export CXX
;;
LinuxRedHat*)
THE_OS="Linux"
THE_COMP="the GNU C++"