mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-4513 Add the Intel compiler with Cygwin configuration.
X-SVN-Rev: 17620
This commit is contained in:
parent
9eda90f2b9
commit
76f4c40265
1 changed files with 13 additions and 0 deletions
|
@ -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++"
|
||||
|
|
Loading…
Add table
Reference in a new issue