ICU-4513 Add the Intel compiler with Cygwin configuration.

X-SVN-Rev: 17620
This commit is contained in:
George Rhoten 2005-05-18 17:28:59 +00:00
parent 9eda90f2b9
commit 76f4c40265

View file

@ -34,6 +34,7 @@ The following names can be supplied as the argument for platform:
BeOS Use the GNU gcc/g++ compilers on BeOS
Cygwin Use the GNU gcc/g++ compilers on Cygwin
Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
Cygwin/ICL Use the Intel C++ compiler on Cygwin
FreeBSD Use the GNU gcc/g++ compilers on Free BSD
HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
Linux Use the GNU gcc/g++ compilers on Linux
@ -234,6 +235,18 @@ case $platform in
DEBUG_CFLAGS=
DEBUG_CXXFLAGS=
;;
Cygwin/ICL)
THE_OS="Windows with Cygwin"
THE_COMP="Intel C++"
CC=icl; export CC
CXX=icl; export CXX
# The Intel compiler has optimization bugs. So we disable optimization.
RELEASE_CFLAGS='/Od'
RELEASE_CXXFLAGS='/Od'
# The real debug flags are defined by the mh file because configure can't handle them.
DEBUG_CFLAGS=
DEBUG_CXXFLAGS=
;;
MacOSX)
THE_OS="MacOS X (Darwin)"
THE_COMP="the GNU C++"