Closed
Bug 72189
Opened 25 years ago
Closed 25 years ago
add some linker options for AIX
Categories
(SeaMonkey :: Build Config, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla0.9
People
(Reporter: jdunn, Assigned: jdunn)
References
Details
Looking through some things, I found some additional linker options
that will help aix.
-bsymbolic (looking in current .so for resolving symbols first
-bnortllib (when building a .so, do not include the runtime rtl lib,
since the executable will include it)
Here is my diff - configure.in, in a AIX only section
Index: configure.in
===================================================================
RCS file: /cvsroot/mozilla/configure.in,v
retrieving revision 1.799
diff -c -r1.799 configure.in
*** configure.in 2001/03/14 06:41:26 1.799
--- configure.in 2001/03/15 23:38:56
***************
*** 599,605 ****
*-aix*)
if test ! "$GNU_CC"; then
# DSO_LDOPTS='-ldl -bM:SRE -p1 -brtl -bso -bexpall -bnoentry'
! DSO_LDOPTS='-ldl -p1 -brtl -bso'
DSO_CFLAGS='-qflag=w:w'
DSO_PIC_CFLAGS='-DPIC'
fi
--- 599,605 ----
*-aix*)
if test ! "$GNU_CC"; then
# DSO_LDOPTS='-ldl -bM:SRE -p1 -brtl -bso -bexpall -bnoentry'
! DSO_LDOPTS='-ldl -p1 -brtl -bso -bsymbolic -bnortllib'
DSO_CFLAGS='-qflag=w:w'
DSO_PIC_CFLAGS='-DPIC'
fi
updating
fixed checked in 3/27
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•