mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 18:25:57 +00:00
ICU-4480 Fix some optimization flag typos
X-SVN-Rev: 17477
This commit is contained in:
parent
5f733d65b8
commit
9ed71f7085
2 changed files with 6 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
## -*-makefile-*-
|
||||
## Solaris-specific setup using Sun's workshop compilers
|
||||
## Copyright (c) 1999-2004, International Business Machines Corporation and
|
||||
## Solaris-specific setup using Sun's compilers
|
||||
## Copyright (c) 1999-2005, International Business Machines Corporation and
|
||||
## others. All Rights Reserved.
|
||||
|
||||
## Flags for position independent code
|
||||
|
@ -12,9 +12,6 @@ SHAREDLIBCPPFLAGS = -DPIC
|
|||
GEN_DEPS.c= $(CC) -xM $(DEFS) $(CPPFLAGS)
|
||||
GEN_DEPS.cc= $(CXX) -xM $(DEFS) $(CPPFLAGS)
|
||||
|
||||
# -libmil means use the intrinsic library functions like strlen
|
||||
CPPFLAGS += -libmil
|
||||
|
||||
# -mt means 'compiles and links a multithreaded program'
|
||||
THREADSCFLAGS += -mt
|
||||
THREADSCXXFLAGS += -mt
|
||||
|
|
|
@ -140,16 +140,16 @@ case $platform in
|
|||
THE_COMP="Sun's CC"
|
||||
CC=`which cc`; export CC
|
||||
CXX=`which CC`; export CXX
|
||||
RELEASE_CFLAGS=-xO4
|
||||
RELEASE_CXXFLAGS=-O4
|
||||
RELEASE_CFLAGS="-xO4 -xlibmil"
|
||||
RELEASE_CXXFLAGS="-O4 -xlibmil"
|
||||
;;
|
||||
Solaris/W4.2)
|
||||
THE_OS=SOLARIS
|
||||
THE_COMP="Sun's CC"
|
||||
CC=`which cc`; export CC
|
||||
CXX=`which CC`; export CXX
|
||||
RELEASE_CFLAGS=-x04
|
||||
RELEASE_CXXFLAGS="-O4 +d"
|
||||
RELEASE_CFLAGS="-xO4 -xlibmil"
|
||||
RELEASE_CXXFLAGS="-O4 -xlibmil +d"
|
||||
;;
|
||||
Solaris/GCC)
|
||||
THE_OS=SOLARIS
|
||||
|
|
Loading…
Add table
Reference in a new issue