diff options
author | Emil Velikov <[email protected]> | 2014-03-13 05:44:33 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-31 13:09:23 +0100 |
commit | d187a150d45cbf5bd3476eab49be5057382c2c86 (patch) | |
tree | 21d55b22990122812b5875f31cc1d09966fedc39 /src/egl/main | |
parent | 902dc61f886c0d719ce25894bbc8032ede0f409b (diff) |
automake: add -Wl,--no-undefined to all libraries
... apart from the dri drivers.
With this final change we can build mesa without fear that
the resulting libraries will have unresolved symbols.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/egl/main/Makefile.am b/src/egl/main/Makefile.am index 46e890a99f6..57c9ccd6abb 100644 --- a/src/egl/main/Makefile.am +++ b/src/egl/main/Makefile.am @@ -73,7 +73,11 @@ libEGL_la_SOURCES = \ libEGL_la_LIBADD = \ $(EGL_LIB_DEPS) -libEGL_la_LDFLAGS = -Wl,-Bsymbolic -version-number 1:0 -no-undefined +libEGL_la_LDFLAGS = \ + -no-undefined \ + -version-number 1:0 \ + -Wl,-Bsymbolic \ + -Wl,--no-undefined if HAVE_EGL_PLATFORM_X11 AM_CFLAGS += -DHAVE_X11_PLATFORM |