mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 10:17:23 +00:00
ICU-1407 Fix for Tru64 (OSF)
X-SVN-Rev: 6501
This commit is contained in:
parent
eedb17c39e
commit
6539a70a77
1 changed files with 7 additions and 0 deletions
|
@ -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++"
|
||||
|
|
Loading…
Add table
Reference in a new issue