Skip to content
Snippets Groups Projects
Commit ce6c17c0 authored by Emil Velikov's avatar Emil Velikov
Browse files

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: default avatarEmil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: default avatarFrancisco Jerez <currojerez@riseup.net>
parent f743670b
No related branches found
No related tags found
No related merge requests found
...@@ -47,9 +47,9 @@ AM_LDFLAGS = \ ...@@ -47,9 +47,9 @@ AM_LDFLAGS = \
-module \ -module \
-no-undefined \ -no-undefined \
-avoid-version \ -avoid-version \
-Wl,--version-script=$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.sym \
$(GC_SECTIONS) \ $(GC_SECTIONS) \
$(LD_NO_UNDEFINED) \ $(LD_NO_UNDEFINED)
-Wl,--version-script=$(top_srcdir)/src/gallium/targets/pipe-loader/pipe.link
if HAVE_MESA_LLVM if HAVE_MESA_LLVM
PIPE_LIBS += $(LLVM_LIBS) PIPE_LIBS += $(LLVM_LIBS)
......
VERSION {
global: driver_descriptor; local: *;
};
{
global:
driver_descriptor;
swrast_create_screen;
local:
*;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment