mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
targets/pipe-loader: cleanup version-script
Drop the version/name tag from the script as it was never meant to be there. Add swrast_create_screen as it is used when loading swrast. Rename the file to pipe.sym. v2: Rebase on top of the LD_NO_UNDEFINED changes. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
f743670b9a
commit
ce6c17c083
3 changed files with 9 additions and 5 deletions
|
|
@ -47,9 +47,9 @@ AM_LDFLAGS = \
|
|||
-module \
|
||||
-no-undefined \
|
||||
-avoid-version \
|
||||
-Wl,--version-script=$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.sym \
|
||||
$(GC_SECTIONS) \
|
||||
$(LD_NO_UNDEFINED) \
|
||||
-Wl,--version-script=$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.link
|
||||
$(LD_NO_UNDEFINED)
|
||||
|
||||
if HAVE_MESA_LLVM
|
||||
PIPE_LIBS += $(LLVM_LIBS)
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
VERSION {
|
||||
global: driver_descriptor; local: *;
|
||||
};
|
||||
7
src/gallium/targets/pipe-loader/pipe.sym
Normal file
7
src/gallium/targets/pipe-loader/pipe.sym
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
global:
|
||||
driver_descriptor;
|
||||
swrast_create_screen;
|
||||
local:
|
||||
*;
|
||||
};
|
||||
Loading…
Add table
Reference in a new issue