summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk@arm.linux.org.uk>2012-10-20 17:49:12 +0100
committerRussell King <rmk@arm.linux.org.uk>2012-10-23 11:16:06 +0100
commit460226fc290b2730da029d24fcf9b31d9be78256 (patch)
tree834cbed78d9c4c8da81f63831f38a4e2d578cf91
parent365dbfa7b9a2029a4c0f19b2b0f300340488ecc4 (diff)
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.
-rwxr-xr-xMakefile2
1 files changed, 1 insertions, 1 deletions
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