summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-14 13:09:57 +0000
committerChris Lattner <sabre@nondot.org>2003-05-14 13:09:57 +0000
commit74075dd83201754140555b1b3146529659ffdbaf (patch)
treecf3abbab7d2dd04fa60272afc162f25d48ec146c /runtime
parentfdab72830183821c06ee87d4836e9a9b45bc8dcb (diff)
downloadexternal_llvm-74075dd83201754140555b1b3146529659ffdbaf.zip
external_llvm-74075dd83201754140555b1b3146529659ffdbaf.tar.gz
external_llvm-74075dd83201754140555b1b3146529659ffdbaf.tar.bz2
Minor updates
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.libs7
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/Makefile.libs b/runtime/Makefile.libs
index a11171d..60515f1 100644
--- a/runtime/Makefile.libs
+++ b/runtime/Makefile.libs
@@ -25,12 +25,11 @@ LObjects := $(addprefix Output/,$(LObjs))
# Link the library, then perform postlink optimization...
$(DESTLIBNAME): $(DESTLIBDIR)/.dir $(LObjects)
$(LLINK) -f $(LObjects) $(LDFLAGS) | \
- $(LOPT) -f -deadtypeelim -raise -constprop -dce -o $@
+ $(LOPT) -f -funcresolve -deadtypeelim -globaldce -o $@
-# Install target for libraries: Copy into the gcc install directory in chris's
-# tree...
+# Install target for libraries: Copy into the gcc install directory.
#
-INSTALL_DIR := /home/vadve/lattner/cvs/gcc_install_x86/llvm/lib/
+INSTALL_DIR := $(LLVMGCCDIR)/bytecode-libs/
install:: $(DESTLIBNAME)
cp $(DESTLIBNAME) $(INSTALL_DIR)