ICU-3773 Allow users to specify CXXFLAGS and LDFLAGS for Solaris gcc

X-SVN-Rev: 15409
This commit is contained in:
George Rhoten 2004-05-19 19:03:54 +00:00
parent 25a36a641f
commit 15ebb51971

View File

@ -189,8 +189,8 @@ case $platform in
SOLARISGCC)
THE_OS=SOLARIS
THE_COMP="the GNU C++"
CXXFLAGS=-I/usr/local/include/g++; export CXXFLAGS
LDFLAGS=-R/usr/local/lib; export LDFLAGS
CXXFLAGS="$CXXFLAGS -I/usr/local/include/g++"; export CXXFLAGS
LDFLAGS="$LDFLAGS -R/usr/local/lib"; export LDFLAGS
RELEASE_CXXFLAGS=-O
RELEASE_CFLAGS=-O3
;;