diff options
author | Emil Velikov <[email protected]> | 2013-11-09 23:00:14 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2013-11-16 16:31:04 +0000 |
commit | 02fdb5cb51fdbe63261ffeb7d5ca0fa10838899b (patch) | |
tree | fe1c9cc7a970ebd9c6a9980e9a5826990e9e8ec8 /src/gallium | |
parent | 5b8c2c8f00a145d0e62edac9c92c1ef14d02651d (diff) |
targets/dri: move linker flags out of configure into Automake.inc
Previous assumption was that the same set of flags can be reused
for both classic and gallium drivers. With megadriver work done
the classic drivers ended up using their own (single) instance of
the flags.
Move these into Automake.inc and rename to indicate that those
are gallium specific. Additionally silence an automake/autoconf
warning "XXX is not a standard libtool library name", due to
the parsing issues of the module tag.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/Automake.inc | 8 | ||||
-rw-r--r-- | src/gallium/targets/dri-freedreno/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-i915/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-ilo/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-nouveau/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-swrast/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-vmwgfx/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/r300/dri/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/r600/dri/Makefile.am | 2 | ||||
-rw-r--r-- | src/gallium/targets/radeonsi/dri/Makefile.am | 2 |
10 files changed, 17 insertions, 9 deletions
diff --git a/src/gallium/Automake.inc b/src/gallium/Automake.inc index 2a3ad21d20c..b6b9b367a82 100644 --- a/src/gallium/Automake.inc +++ b/src/gallium/Automake.inc @@ -50,6 +50,14 @@ GALLIUM_VIDEO_CFLAGS = \ $(LIBDRM_CFLAGS) \ $(VISIBILITY_CFLAGS) + +# TODO: add -export-symbols-regex +GALLIUM_DRI_LINKER_FLAGS = \ + -module \ + -avoid-version \ + -shared \ + -Wl,-Bsymbolic + GALLIUM_VDPAU_LINKER_FLAGS = \ -module \ -version-number $(VDPAU_MAJOR):$(VDPAU_MINOR) \ diff --git a/src/gallium/targets/dri-freedreno/Makefile.am b/src/gallium/targets/dri-freedreno/Makefile.am index 2708dd3d466..94500b0e28c 100644 --- a/src/gallium/targets/dri-freedreno/Makefile.am +++ b/src/gallium/targets/dri-freedreno/Makefile.am @@ -32,7 +32,7 @@ AM_CPPFLAGS = \ dridir = $(DRI_DRIVER_INSTALL_DIR) dri_LTLIBRARIES = kgsl_dri.la msm_dri.la -COMMON_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +COMMON_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) COMMON_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/dri-i915/Makefile.am b/src/gallium/targets/dri-i915/Makefile.am index 582c27042a9..3f8468fa7a3 100644 --- a/src/gallium/targets/dri-i915/Makefile.am +++ b/src/gallium/targets/dri-i915/Makefile.am @@ -35,7 +35,7 @@ dri_LTLIBRARIES = i915_dri.la i915_dri_la_SOURCES = target.c -i915_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +i915_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) i915_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/dri-ilo/Makefile.am b/src/gallium/targets/dri-ilo/Makefile.am index 3633d083589..418e2ea31ab 100644 --- a/src/gallium/targets/dri-ilo/Makefile.am +++ b/src/gallium/targets/dri-ilo/Makefile.am @@ -35,7 +35,7 @@ noinst_LTLIBRARIES = ilo_dri.la ilo_dri_la_SOURCES = target.c # need -rpath to create a noinst shared library -ilo_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) \ +ilo_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) \ -rpath $(abs_builddir) ilo_dri_la_LIBADD = \ diff --git a/src/gallium/targets/dri-nouveau/Makefile.am b/src/gallium/targets/dri-nouveau/Makefile.am index 120e2429fdd..19880679bae 100644 --- a/src/gallium/targets/dri-nouveau/Makefile.am +++ b/src/gallium/targets/dri-nouveau/Makefile.am @@ -34,7 +34,7 @@ dri_LTLIBRARIES = nouveau_dri.la nodist_EXTRA_nouveau_dri_la_SOURCES = dummy.cpp nouveau_dri_la_SOURCES = target.c -nouveau_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +nouveau_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) nouveau_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/dri-swrast/Makefile.am b/src/gallium/targets/dri-swrast/Makefile.am index 11166ae6987..ec1576bce3f 100644 --- a/src/gallium/targets/dri-swrast/Makefile.am +++ b/src/gallium/targets/dri-swrast/Makefile.am @@ -42,7 +42,7 @@ swrast_dri_la_SOURCES = \ $(top_srcdir)/src/mesa/drivers/dri/common/dri_util.c \ $(top_srcdir)/src/mesa/drivers/dri/common/xmlconfig.c -swrast_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +swrast_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) swrast_dri_la_LIBADD = \ $(top_builddir)/src/mesa/libmesagallium.la \ diff --git a/src/gallium/targets/dri-vmwgfx/Makefile.am b/src/gallium/targets/dri-vmwgfx/Makefile.am index 24df85285d1..712e570abd6 100644 --- a/src/gallium/targets/dri-vmwgfx/Makefile.am +++ b/src/gallium/targets/dri-vmwgfx/Makefile.am @@ -35,7 +35,7 @@ vmwgfx_dri_la_SOURCES = \ target.c \ vmw_powf.c -vmwgfx_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +vmwgfx_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) vmwgfx_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/r300/dri/Makefile.am b/src/gallium/targets/r300/dri/Makefile.am index 8b0b768da90..d6d8f2d3f97 100644 --- a/src/gallium/targets/r300/dri/Makefile.am +++ b/src/gallium/targets/r300/dri/Makefile.am @@ -36,7 +36,7 @@ nodist_EXTRA_r300_dri_la_SOURCES = dummy.cpp r300_dri_la_SOURCES = \ drm_target.c -r300_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +r300_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) r300_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/r600/dri/Makefile.am b/src/gallium/targets/r600/dri/Makefile.am index 62284d1f7ff..42db72f5cd5 100644 --- a/src/gallium/targets/r600/dri/Makefile.am +++ b/src/gallium/targets/r600/dri/Makefile.am @@ -35,7 +35,7 @@ dri_LTLIBRARIES = r600_dri.la r600_dri_la_SOURCES = \ drm_target.c -r600_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +r600_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) r600_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ diff --git a/src/gallium/targets/radeonsi/dri/Makefile.am b/src/gallium/targets/radeonsi/dri/Makefile.am index aacb18c9969..2c1a58d76ff 100644 --- a/src/gallium/targets/radeonsi/dri/Makefile.am +++ b/src/gallium/targets/radeonsi/dri/Makefile.am @@ -36,7 +36,7 @@ nodist_EXTRA_radeonsi_dri_la_SOURCES = dummy.cpp radeonsi_dri_la_SOURCES = \ drm_target.c -radeonsi_dri_la_LDFLAGS = $(DRI_DRIVER_LDFLAGS) +radeonsi_dri_la_LDFLAGS = $(GALLIUM_DRI_LINKER_FLAGS) radeonsi_dri_la_LIBADD = \ $(top_builddir)/src/mesa/drivers/dri/common/libdricommon.la \ |