Opened 9 years ago
Closed 9 years ago
#96 closed defect (fixed)
libtool: SYMBOL_UNDERSCORE is not defined
Reported by: | dmik | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | libtool | Version: | |
Severity: | medium | Keywords: | |
Cc: |
Description
It turns out that libtool 2.4.6 doesn't define SYMBOL_UNDERSCORE and this breaks some packages, e.g. libffi
. This is most likely because of the unexpected nm
output at some place. See https://github.com/bitwiseworks/mozilla-os2/issues/115#issuecomment-145166248 for details.
Note:
See TracTickets
for help on using tickets.
This is fixed in r1283. The problem was that Firefox called libffi configure with
-Zomf
in CFLAGS so that the conftest object was created in OMF mode thatnm
couldn't read. I changed the test to useemxexp
instead ofnm
to look at the symbol in the object.