diff options
author | notaz | 2012-11-05 00:58:51 +0200 |
---|---|---|
committer | notaz | 2012-11-05 03:12:25 +0200 |
commit | 22fa3f2b3d09f3694f938ca895d447a30ec96f25 (patch) | |
tree | fca09040f183bcb708b23474e9b2f35ce21db7c9 /plugins | |
parent | cc56203b76e1fcef2c7e55b460daf07e654a1547 (diff) | |
download | pcsx_rearmed-22fa3f2b3d09f3694f938ca895d447a30ec96f25.tar.gz pcsx_rearmed-22fa3f2b3d09f3694f938ca895d447a30ec96f25.tar.bz2 pcsx_rearmed-22fa3f2b3d09f3694f938ca895d447a30ec96f25.zip |
detect undefined symbols early
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dfxvideo/Makefile | 2 | ||||
-rw-r--r-- | plugins/gpulib/gpulib.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dfxvideo/Makefile b/plugins/dfxvideo/Makefile index a5ca5f3..250cc49 100644 --- a/plugins/dfxvideo/Makefile +++ b/plugins/dfxvideo/Makefile @@ -12,7 +12,7 @@ ifeq "$(ARCH)" "arm" SRC_STANDALONE += draw_pl.c else SRC_STANDALONE += draw.c -LDLIBS_STANDALONE += -lX11 -lXv +LDLIBS_STANDALONE += -lX11 -lXv -lXext endif BIN_STANDLALONE = gpuPEOPS.so diff --git a/plugins/gpulib/gpulib.mak b/plugins/gpulib/gpulib.mak index 349a0c8..22da6f5 100644 --- a/plugins/gpulib/gpulib.mak +++ b/plugins/gpulib/gpulib.mak @@ -2,7 +2,7 @@ # always adding gpulib to deps in case cspace is needed # users must include ../../config.mak -LDFLAGS += -shared +LDFLAGS += -shared -Wl,--no-undefined CFLAGS += $(PLUGIN_CFLAGS) ifeq "$(ARCH)" "arm" EXT = |