mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 10:17:23 +00:00
ICU-21623 Removed linker flag -dexpall for AIX xlclang build.
See #1727
This commit is contained in:
parent
07b7832b1a
commit
5518bb0c84
2 changed files with 4 additions and 4 deletions
icu4c/source
|
@ -28,8 +28,8 @@ LINK.cc= $(AIX_PREDELETE) $(CXX) $(CXXFLAGS) $(LDFLAGS)
|
|||
LD_SOOPTIONS= -Wl,-bsymbolic
|
||||
|
||||
## Commands to make a shared library
|
||||
SHLIB.c= $(AIX_PREDELETE) $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-bexpall $(LD_SOOPTIONS)
|
||||
SHLIB.cc= $(AIX_PREDELETE) $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared -Wl,-bexpall $(LD_SOOPTIONS)
|
||||
SHLIB.c= $(AIX_PREDELETE) $(CC) $(CFLAGS) $(LDFLAGS) -shared $(LD_SOOPTIONS)
|
||||
SHLIB.cc= $(AIX_PREDELETE) $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(LD_SOOPTIONS)
|
||||
|
||||
## Compiler switch to embed a runtime search path
|
||||
LD_RPATH= -I
|
||||
|
|
|
@ -143,8 +143,8 @@ case $platform in
|
|||
if [ ! -x $CXX ]; then
|
||||
echo "ERROR: xlclang++ was not found, please check the PATH to make sure it is correct."; exit 1
|
||||
fi
|
||||
RELEASE_CFLAGS="-O3"
|
||||
RELEASE_CXXFLAGS="-O3"
|
||||
RELEASE_CFLAGS="-O3 -qstrict=ieeefp"
|
||||
RELEASE_CXXFLAGS="-O3 -qstrict=ieeefp"
|
||||
;;
|
||||
AIX/GCC)
|
||||
THE_OS=AIX
|
||||
|
|
Loading…
Add table
Reference in a new issue