Overview
Comment: | Always use -Wl,--export-all-symbols for libs
While this should be the default, it seems it's not the default when |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ce59f7740091a6b71f703cd883a502bb |
User & Date: | js on 2017-01-07 23:07:32 |
Other Links: | manifest | tags |
Context
2017-01-16
| ||
02:53 | Make sure we never end up with "for i in ;" check-in: 74c1a6b3ab user: js tags: trunk | |
2017-01-07
| ||
23:07 | Always use -Wl,--export-all-symbols for libs check-in: ce59f77400 user: js tags: trunk | |
2016-07-09
| ||
20:09 | Update copyright check-in: f6ec3fb905 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [84c8baccbe] to [fd3de38ea6].
1 | 1 2 3 4 5 6 7 8 9 | - + | dnl |
︙ | |||
96 97 98 99 100 101 102 | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | - + | AC_DEFUN([BUILDSYS_PROG_IMPLIB], [ AC_REQUIRE([AC_CANONICAL_HOST]) AC_MSG_CHECKING(whether we need an implib) case "$host_os" in cygwin* | mingw*) AC_MSG_RESULT(yes) PROG_IMPLIB_NEEDED='yes' |
︙ | |||
131 132 133 134 135 136 137 | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + | INSTALL_LIB='&& ${INSTALL} -m 755 $$i ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib && ${LN_S} -f $${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.dylib && ${LN_S} -f $${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib ${DESTDIR}${libdir}/$$i' UNINSTALL_LIB='&& rm -f ${DESTDIR}${libdir}/$$i ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.dylib ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib' CLEAN_LIB='' ;; mingw* | cygwin*) AC_MSG_RESULT(MinGW / Cygwin) LIB_CFLAGS='' |
︙ |