Differences From Artifact [84c8baccbe]:
- File
m4/buildsys.m4
— part of check-in
[0132db8ec5]
at
2016-07-09 19:58:56
on branch trunk
— Don't match against androideabi*, but android*
On AArch64, it's just -android and not -androideabi. (user: js, size: 7860) [annotate] [blame] [check-ins using]
To Artifact [fd3de38ea6]:
- File
m4/buildsys.m4
— part of check-in
[ce59f77400]
at
2017-01-07 23:07:32
on branch trunk
— Always use -Wl,--export-all-symbols for libs
While this should be the default, it seems it's not the default when
using Clang. (user: js, size: 7888) [annotate] [blame] [check-ins using]
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='' |
︙ |