mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-09 07:22:11 +00:00
ICU-3389 Fix case of Cygwin
X-SVN-Rev: 14817
This commit is contained in:
parent
148ba80331
commit
84f4e14cf3
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue