ICU-3255 Modify Intel compiler information

X-SVN-Rev: 13140
This commit is contained in:
George Rhoten 2003-09-18 21:42:09 +00:00
parent bc64b9469c
commit b20fe7dc0f

View File

@ -241,15 +241,19 @@ case $platform in
;;
LINUX/ECC)
THE_OS="Linux"
THE_COMP="Intel ECC 70"
THE_COMP="Intel ECC 7.1"
CC=ecc; export CC
CXX=ecc; export CXX
CXX=ecpc; export CXX
RELEASE_CFLAGS='-O3'
RELEASE_CXXFLAGS='-O3'
;;
LINUX/ICC)
THE_OS="Linux"
THE_COMP="Intel ICC"
THE_COMP="Intel ICC 6.0"
CC=icc; export CC
CXX=icc; export CXX
CXX=icpc; export CXX
RELEASE_CFLAGS='-O0'
RELEASE_CXXFLAGS='-O0'
;;
CygWin)
THE_OS="CygWin"
@ -383,4 +387,3 @@ echo
echo If the result of the above commands looks okay to you, go to the directory
echo source in the ICU distribution to build ICU. Please remember that ICU needs
echo GNU make to build properly...