summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-20 21:45:44 +0000
committerChris Lattner <sabre@nondot.org>2002-05-20 21:45:44 +0000
commitc5208d4222048002e7a89a94d7174b3db2781a52 (patch)
tree16dbeffa14a27da75799549656a88f3a277a3acc /runtime
parent2e0769ea16d695f77a030c5ce3a34f5848954cca (diff)
downloadllvm-c5208d4222048002e7a89a94d7174b3db2781a52.tar.gz
llvm-c5208d4222048002e7a89a94d7174b3db2781a52.tar.bz2
llvm-c5208d4222048002e7a89a94d7174b3db2781a52.tar.xz
Allow libraries to specify other libraries to link to
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.libs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Makefile.libs b/runtime/Makefile.libs
index b5e21c28d8..66d6a7563c 100644
--- a/runtime/Makefile.libs
+++ b/runtime/Makefile.libs
@@ -24,7 +24,7 @@ LObjects := $(addprefix Output/,$(LObjs))
# Link the library, then perform postlink optimization...
$(DESTLIBNAME): $(DESTLIBDIR)/.dir $(LObjects)
- $(LLINK) -f $(LObjects) | \
+ $(LLINK) -f $(LObjects) $(LDFLAGS) | \
$(LOPT) -f -cleangcc -raise -constprop -dce -o $@
# Install target for libraries: Copy into the gcc install directory in chris's