diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-19 18:11:02 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-19 18:11:02 +0000 |
commit | e6a9912a76caaa3f21d732fbdd53788f61d8ad29 (patch) | |
tree | 2a49893244a1767e83058fafea879177d467d723 | |
parent | 0b59e80db5be53122ad4974f13af14aaf64c4bb3 (diff) | |
download | bcm5719-llvm-e6a9912a76caaa3f21d732fbdd53788f61d8ad29.tar.gz bcm5719-llvm-e6a9912a76caaa3f21d732fbdd53788f61d8ad29.zip |
Remove -module, which appears to be a leftover from prior libtool usage.
llvm-svn: 101793
-rw-r--r-- | llvm/Makefile.rules | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 6e177813148..9414f634adc 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -581,13 +581,6 @@ ifeq ($(TARGET_OS),Darwin) endif endif -# Adjust LD.Flags depending on the kind of library that is to be built. Note -# that if LOADABLE_MODULE is specified then the resulting shared library can -# be opened with dlopen. -ifdef LOADABLE_MODULE - LD.Flags += -module -endif - ifdef SHARED_LIBRARY ifneq ($(DARWIN_MAJVERS),4) LD.Flags += $(RPATH) -Wl,$(LibDir) |