GNOME Bugzilla – Bug 646608
export_symbols variable for gio dynamic library is wrong
Last modified: 2011-06-07 21:49:28 UTC
Created attachment 185017 [details] [review] Small patch to fix the problem The export_symbols variable found in gio/Makefile.am is wrong, causing link errors when cross-compiling on some architectures (blackfin). gio/Makefile.am > [...] > install-def-file: > uninstall-def-file: > > export_symbols = -export-symbols-regex '^g_.*' > endif > [...] It should be: > [...] > install-def-file: > uninstall-def-file: > > export_symbols = $(LIBTOOL_EXPORT_OPTIONS) > endif > [...] Other Makefile.am are ok: glib/Makefile.am > [...] > install-def-file: > uninstall-def-file: > > export_symbols = $(LIBTOOL_EXPORT_OPTIONS) > endif > [...] gobject/Makefile.am > [...] > install-def-file: >uninstall-def-file: > > export_symbols = $(LIBTOOL_EXPORT_OPTIONS) > endif > [...]
fixed in master; I couldn't use your patch directly though because of the invalid email address in the From: line