From 460226fc290b2730da029d24fcf9b31d9be78256 Mon Sep 17 00:00:00 2001 From: Russell King Date: Sat, 20 Oct 2012 17:49:12 +0100 Subject: Do not permit undefined references from this library All references from this library should be resolvable when the library is created; this is not a stand-alone module. All symbols should be found in either libc or libbmm. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f1d5b6d..6fe7203 100755 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ libvmeta.a: ${vmeta_lib_obj} ${AR} -rcs $@ ${vmeta_lib_obj} libvmeta.so: ${vmeta_lib_obj} - ${CC} -g -s -shared -Wl,-soname,$@ -o $@ ${vmeta_lib_obj} -lbmm + ${CC} -g -s -shared --no-undefined -Wl,-soname,$@ -o $@ ${vmeta_lib_obj} -lbmm clean: clean-local -- cgit