Bug 676389 - Compilation fails using clang because of -u options passed to linker

Use -Wl,-u,symbol to makes things build instead of just -u symbol.
This commit is contained in:
Michael Natterer 2012-05-20 19:29:44 +02:00
parent e5fc441433
commit b058137145
3 changed files with 37 additions and 37 deletions

View File

@ -116,32 +116,32 @@ INCLUDES = \
# FIXME: core should not depend on xcf # FIXME: core should not depend on xcf
workaround_that_core_depends_on_xcf = \ workaround_that_core_depends_on_xcf = \
-u $(SYMPREFIX)xcf_init -Wl,-u,$(SYMPREFIX)xcf_init
# FIXME: core should not depend on pdb # FIXME: core should not depend on pdb
workaround_that_core_depends_on_pdb = \ workaround_that_core_depends_on_pdb = \
-u $(SYMPREFIX)internal_procs_init \ -Wl,-u,$(SYMPREFIX)internal_procs_init \
-u $(SYMPREFIX)gimp_plug_in_manager_restore -Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore
# FIXME: plug-in should not depend on pdb # FIXME: plug-in should not depend on pdb
workaround_that_plug_in_depends_on_pdb = \ workaround_that_plug_in_depends_on_pdb = \
-u $(SYMPREFIX)gimp_pdb_compat_param_spec -Wl,-u,$(SYMPREFIX)gimp_pdb_compat_param_spec
# FIXME: file should not depend on plug-in # FIXME: file should not depend on plug-in
workaround_that_file_depends_on_plug_in = \ workaround_that_file_depends_on_plug_in = \
-u $(SYMPREFIX)plug_in_icc_profile_apply_rgb \ -Wl,-u,$(SYMPREFIX)plug_in_icc_profile_apply_rgb \
-u $(SYMPREFIX)gimp_image_map_config_get_type -Wl,-u,$(SYMPREFIX)gimp_image_map_config_get_type
# core, vectors and gegl are on the same architectural layer, prevent # core, vectors and gegl are on the same architectural layer, prevent
# the linker from panicing # the linker from panicing
calm_down_linker = \ calm_down_linker = \
-u $(SYMPREFIX)gimp_vectors_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_mod_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_prop_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_prop_undo_get_type \
-u $(SYMPREFIX)gimp_curve_map_pixels \ -Wl,-u,$(SYMPREFIX)gimp_curve_map_pixels \
-u $(SYMPREFIX)gimp_param_spec_duplicate \ -Wl,-u,$(SYMPREFIX)gimp_param_spec_duplicate \
-u $(SYMPREFIX)gimp_operations_init \ -Wl,-u,$(SYMPREFIX)gimp_operations_init \
-u $(SYMPREFIX)smooth_region -Wl,-u,$(SYMPREFIX)smooth_region
AM_LDFLAGS = \ AM_LDFLAGS = \
$(munix) \ $(munix) \
@ -185,7 +185,7 @@ gimpconsoleldadd = \
gimp_@GIMP_APP_VERSION@_LDFLAGS = \ gimp_@GIMP_APP_VERSION@_LDFLAGS = \
$(AM_LDFLAGS) \ $(AM_LDFLAGS) \
$(win32_ldflags) \ $(win32_ldflags) \
-u $(SYMPREFIX)gimp_lebl_dialog -Wl,-u,$(SYMPREFIX)gimp_lebl_dialog
gimp_@GIMP_APP_VERSION@_LDADD = \ gimp_@GIMP_APP_VERSION@_LDADD = \
gui/libappgui.a \ gui/libappgui.a \

View File

@ -63,25 +63,25 @@ AM_CPPFLAGS = \
# We need this due to circular dependencies, see more detailed # We need this due to circular dependencies, see more detailed
# comments about it in app/Makefile.am # comments about it in app/Makefile.am
AM_LDFLAGS = \ AM_LDFLAGS = \
-u $(SYMPREFIX)xcf_init \ -Wl,-u,$(SYMPREFIX)xcf_init \
-u $(SYMPREFIX)base_init \ -Wl,-u,$(SYMPREFIX)base_init \
-u $(SYMPREFIX)internal_procs_init \ -Wl,-u,$(SYMPREFIX)internal_procs_init \
-u $(SYMPREFIX)gimp_plug_in_manager_restore \ -Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
-u $(SYMPREFIX)gimp_pdb_compat_param_spec \ -Wl,-u,$(SYMPREFIX)gimp_pdb_compat_param_spec \
-u $(SYMPREFIX)gui_init \ -Wl,-u,$(SYMPREFIX)gui_init \
-u $(SYMPREFIX)plug_in_icc_profile_apply_rgb \ -Wl,-u,$(SYMPREFIX)plug_in_icc_profile_apply_rgb \
-u $(SYMPREFIX)gimp_image_map_config_get_type \ -Wl,-u,$(SYMPREFIX)gimp_image_map_config_get_type \
-u $(SYMPREFIX)gimp_vectors_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_mod_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
-u $(SYMPREFIX)gimp_vectors_prop_undo_get_type \ -Wl,-u,$(SYMPREFIX)gimp_vectors_prop_undo_get_type \
-u $(SYMPREFIX)actions_init \ -Wl,-u,$(SYMPREFIX)actions_init \
-u $(SYMPREFIX)gimp_error_dialog_new \ -Wl,-u,$(SYMPREFIX)gimp_error_dialog_new \
-u $(SYMPREFIX)menus_save \ -Wl,-u,$(SYMPREFIX)menus_save \
-u $(SYMPREFIX)gimp_tools_save \ -Wl,-u,$(SYMPREFIX)gimp_tools_save \
-u $(SYMPREFIX)gimp_curve_map_pixels \ -Wl,-u,$(SYMPREFIX)gimp_curve_map_pixels \
-u $(SYMPREFIX)gimp_image_base_type \ -Wl,-u,$(SYMPREFIX)gimp_image_base_type \
-u $(SYMPREFIX)gimp_param_spec_duplicate \ -Wl,-u,$(SYMPREFIX)gimp_param_spec_duplicate \
-u $(SYMPREFIX)gimp_lebl_dialog -Wl,-u,$(SYMPREFIX)gimp_lebl_dialog
# Note that we have some duplicate entries here too to work around # Note that we have some duplicate entries here too to work around
# circular dependencies and systems on the same architectural layer as # circular dependencies and systems on the same architectural layer as

View File

@ -62,10 +62,10 @@ GTKDOC_CFLAGS = \
-UGTK_DISABLE_SINGLE_INCLUDES -UGTK_DISABLE_SINGLE_INCLUDES
GTKDOC_LIBS = \ GTKDOC_LIBS = \
-u $(SYMPREFIX)xcf_init \ -Wl,-u,$(SYMPREFIX)xcf_init \
-u $(SYMPREFIX)internal_procs_init \ -Wl,-u,$(SYMPREFIX)internal_procs_init \
-u $(SYMPREFIX)gimp_coords_mix \ -Wl,-u,$(SYMPREFIX)gimp_coords_mix \
-u $(SYMPREFIX)gimp_plug_in_manager_restore \ -Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
$(top_builddir)/app/app.o \ $(top_builddir)/app/app.o \
$(top_builddir)/app/batch.o \ $(top_builddir)/app/batch.o \
$(top_builddir)/app/errors.o \ $(top_builddir)/app/errors.o \