buildsys  Check-in [dffa232bd2]

Overview
Comment:Don't use rpath on Windows

Windows does not support rpath, and while GNU ld just ignores it, lld
fails with the flag.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: dffa232bd2032733a473c6af73a4875e4543fcccb4c8f22569fdd38bea0fc4de
User & Date: js on 2021-09-04 10:24:14
Other Links: manifest | tags
Context
2021-11-21
21:42
Don't create implib for DLLs check-in: 23165f012c user: js tags: trunk
2021-09-04
10:24
Don't use rpath on Windows check-in: dffa232bd2 user: js tags: trunk
2021-09-02
17:04
Add option to disable rpath check-in: 2a5ae2a51b user: js tags: trunk
Changes

Modified build-aux/m4/buildsys.m4 from [f02d7d0bb6] to [3c7fd1fbe8].

205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
205
206
207
208
209
210
211



212
213
214
215
216
217
218







-
-
-







	*-*-mingw* | *-*-cygwin*)
		AC_MSG_RESULT(MinGW / Cygwin)
		LIB_CFLAGS=''
		LIB_LDFLAGS='-shared -Wl,--export-all-symbols,--out-implib,lib$${out%${LIB_SUFFIX}}.a'
		LIB_LDFLAGS_INSTALL_NAME=''
		LIB_PREFIX=''
		LIB_SUFFIX='${LIB_MAJOR}.dll'
		AS_IF([test x"$enable_rpath" != x"no"], [
			LDFLAGS_RPATH='-Wl,-rpath,${libdir}'
		])
		PLUGIN_CFLAGS=''
		PLUGIN_LDFLAGS='-shared'
		PLUGIN_SUFFIX='.dll'
		LINK_PLUGIN='${LD} -o $$out ${PLUGIN_OBJS} ${PLUGIN_OBJS_EXTRA} ${PLUGIN_LDFLAGS} ${LDFLAGS} ${LIBS}'
		INSTALL_LIB='&& ${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/$$i && ${INSTALL} -m 755 lib$${i%${LIB_SUFFIX}}.a ${DESTDIR}${libdir}/lib$${i%${LIB_SUFFIX}}.a'
		UNINSTALL_LIB='&& rm -f ${DESTDIR}${bindir}/$$i ${DESTDIR}${libdir}/lib$$i.a'
		INSTALL_PLUGIN='&& ${INSTALL} -m 755 $$i ${DESTDIR}${plugindir}/$$i'