ICU-3389 Fix case of Cygwin

X-SVN-Rev: 14817
This commit is contained in:
George Rhoten 2004-04-01 01:25:30 +00:00
parent 148ba80331
commit 84f4e14cf3

View file

@ -36,8 +36,8 @@ The following names can be supplied as the argument for platform:
ALPHA/LINUXGCC Use GCC on Alpha/Linux systems
ALPHA/LINUXCCC Use Compaq C compiler on Alpha/Linux systems
BeOS Use the GNU C++ compiler on BeOS
CygWin Use the GNU C++ compiler on CygWin
CygWin/MSVC Use the Microsoft Visual C++ compiler on CygWin
Cygwin Use the GNU C++ compiler on Cygwin
Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
FreeBSD Use the GNU C++ compiler on Free BSD
HP-UX11ACC Use the Advanced C++ compiler on HP-UX 11
HP-UX11CC Use HP's C++ compiler on HP-UX 11
@ -252,14 +252,14 @@ case $platform in
RELEASE_CFLAGS='-O0'
RELEASE_CXXFLAGS='-O0'
;;
CygWin)
THE_OS="CygWin"
Cygwin)
THE_OS="Cygwin"
THE_COMP="the GNU C++"
RELEASE_CFLAGS='-O3'
RELEASE_CXXFLAGS='-O3'
;;
CygWin/MSVC)
THE_OS="CygWin"
Cygwin/MSVC)
THE_OS="Windows with Cygwin"
THE_COMP="Microsoft Visual C++"
CC=cl; export CC
CXX=cl; export CXX