Differences From Artifact [3c7fd1fbe8]:
- File
build-aux/m4/buildsys.m4
— part of check-in
[dffa232bd2]
at
2021-09-04 10:24:14
on branch trunk
— Don't use rpath on Windows
Windows does not support rpath, and while GNU ld just ignores it, lld
fails with the flag. (user: js, size: 14255) [annotate] [blame] [check-ins using]
To Artifact [194c062082]:
- File
build-aux/m4/buildsys.m4
— part of check-in
[23165f012c]
at
2021-11-21 21:42:52
on branch trunk
— Don't create implib for DLLs
It is possible to directly link against the DLL, which is faster. (user: js, size: 14298) [annotate] [blame] [check-ins using]
︙ | |||
201 202 203 204 205 206 207 | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | - + + - + | INSTALL_PLUGIN='&& rm -fr ${DESTDIR}${plugindir}/$$i && cp -R $$i ${DESTDIR}${plugindir}/' UNINSTALL_PLUGIN='&& rm -fr ${DESTDIR}${plugindir}/$$i' CLEAN_LIB='' ;; *-*-mingw* | *-*-cygwin*) AC_MSG_RESULT(MinGW / Cygwin) LIB_CFLAGS='' |
︙ |