buildsys  Check-in [ee58842cbe]

Overview
Comment:Fix using wrong .o files with Apple libtool
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ee58842cbeb42f6776016739f4d6c4f290113dc9ffe766884aa8e954e5e36224
User & Date: js on 2018-01-19 23:16:11
Other Links: manifest | tags
Context
2018-01-20
16:47
Automatically build and (un)install .frameworks check-in: e112f36a3a user: js tags: trunk
2018-01-19
23:16
Fix using wrong .o files with Apple libtool check-in: ee58842cbe user: js tags: trunk
00:17
Use Apple libtool if build and host are Darwin check-in: 305b7c17e4 user: js tags: trunk
Changes

Modified buildsys.mk.in from [a1a99ddb89] to [d4077c1d71].

347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
		done; \
	fi

${STATIC_PIC_LIB} ${STATIC_PIC_LIB_NOINST}: ${EXT_DEPS} ${LIB_OBJS} ${LIB_OBJS_EXTRA}
	${LINK_STATUS}
	rm -f $@
	if test x"${BUILD_AND_HOST_ARE_DARWIN}" = x"yes"; then \
		if /usr/bin/libtool -static -o $@ ${OBJS} ${OBJS_EXTRA}; then \
			${LINK_OK}; \
		else \
			${LINK_FAILED}; \
			rm -f $@; \
		fi; \
	else \
		out="$@"; \







|







347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
		done; \
	fi

${STATIC_PIC_LIB} ${STATIC_PIC_LIB_NOINST}: ${EXT_DEPS} ${LIB_OBJS} ${LIB_OBJS_EXTRA}
	${LINK_STATUS}
	rm -f $@
	if test x"${BUILD_AND_HOST_ARE_DARWIN}" = x"yes"; then \
		if /usr/bin/libtool -static -o $@ ${LIB_OBJS} ${LIB_OBJS_EXTRA}; then \
			${LINK_OK}; \
		else \
			${LINK_FAILED}; \
			rm -f $@; \
		fi; \
	else \
		out="$@"; \