From fbeab378289a0e9f9470aa9f532003cf66529970 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Thu, 24 Jun 2010 17:33:43 +0100 Subject: [PATCH] test-conformance: Use -export-dynamic instead of -rdynamic The -rdynamic linker option is specific to ELF so it was breaking builds on systems with other object formats such as Windows and Solaris. This patch replaces that option with -export-dynamic which is a portable libtool option which should do the right thing on each platform. http://bugzilla.clutter-project.org/show_bug.cgi?id=1930 --- tests/conform/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conform/Makefile.am b/tests/conform/Makefile.am index 26bbd70fc..c56ce4d77 100644 --- a/tests/conform/Makefile.am +++ b/tests/conform/Makefile.am @@ -110,7 +110,7 @@ test_conformance_CFLAGS = -g $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) test_conformance_LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la $(CLUTTER_LIBS) -test_conformance_LDFLAGS = -rdynamic +test_conformance_LDFLAGS = -export-dynamic .PHONY: test .PHONY: test-report test-report-normal test-report-disable-npots