From 6d6c749215739d0b5f5143dd00a782082b3d03a2 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 23 Oct 2013 15:35:45 -0400 Subject: [PATCH] pipe-loader: Only export necessary symbols v3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This makes it possible to use clover with statically linked LLVM. v2: - Inline LINKER_SCRIPT variable v3: Kai Wasserbäch - Fix out out-of-tree-builds Tested-by: Kai Wasserbäch --- src/gallium/targets/pipe-loader/Makefile.am | 2 ++ src/gallium/targets/pipe-loader/pipe.link | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 src/gallium/targets/pipe-loader/pipe.link diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index e6772b8..970ff0e 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -22,6 +22,8 @@ include $(top_srcdir)/src/gallium/Automake.inc +LDFLAGS += -Wl,$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.link + AM_CPPFLAGS = \ $(GALLIUM_CFLAGS) \ -I$(top_srcdir)/include \ diff --git a/src/gallium/targets/pipe-loader/pipe.link b/src/gallium/targets/pipe-loader/pipe.link new file mode 100644 index 0000000..1c98da6 --- /dev/null +++ b/src/gallium/targets/pipe-loader/pipe.link @@ -0,0 +1,3 @@ +VERSION { + {global: driver_descriptor; local: *; }; +}; -- 2.7.4