diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2006-06-01 01:30:27 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2006-06-01 01:30:27 +0000 |
| commit | a647c7ff42c5cf73519e0c024d204fb91952194e (patch) | |
| tree | d119b14ed922361979e9b6169d1693ffc56be81d /llvm/runtime | |
| parent | 6c8368beeadbe580532e101473eeb7118e6d893e (diff) | |
| download | bcm5719-llvm-a647c7ff42c5cf73519e0c024d204fb91952194e.tar.gz bcm5719-llvm-a647c7ff42c5cf73519e0c024d204fb91952194e.zip | |
Use archive libraries instead of object files for VMCore, BCReader,
BCWriter, and bzip2 libraries. Adjust the various makefiles to accommodate
these changes. This was done to speed up link times.
llvm-svn: 28610
Diffstat (limited to 'llvm/runtime')
| -rw-r--r-- | llvm/runtime/GC/SemiSpace/Makefile | 2 | ||||
| -rw-r--r-- | llvm/runtime/GCCLibraries/libc/Makefile | 4 | ||||
| -rw-r--r-- | llvm/runtime/libtrace/Makefile | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/llvm/runtime/GC/SemiSpace/Makefile b/llvm/runtime/GC/SemiSpace/Makefile index 8aaa29c8cb0..6f8e54ce276 100644 --- a/llvm/runtime/GC/SemiSpace/Makefile +++ b/llvm/runtime/GC/SemiSpace/Makefile @@ -15,3 +15,5 @@ EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/../gc_exported_symbols.lst include $(LEVEL)/Makefile.common +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) diff --git a/llvm/runtime/GCCLibraries/libc/Makefile b/llvm/runtime/GCCLibraries/libc/Makefile index c2106e01fd4..4dc2f88a92e 100644 --- a/llvm/runtime/GCCLibraries/libc/Makefile +++ b/llvm/runtime/GCCLibraries/libc/Makefile @@ -1,4 +1,4 @@ -##===- runtime/GCCLibraries/libc/Makefile ------------------------------*- Makefile -*-===## +##===- runtime/GCCLibraries/libc/Makefile ------------------*- Makefile -*-===## # # The LLVM Compiler Infrastructure # @@ -15,3 +15,5 @@ BYTECODE_DESTINATION = $(CFERuntimeLibDir) include $(LEVEL)/Makefile.common +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) diff --git a/llvm/runtime/libtrace/Makefile b/llvm/runtime/libtrace/Makefile index b39ca6b10ca..9a070703746 100644 --- a/llvm/runtime/libtrace/Makefile +++ b/llvm/runtime/libtrace/Makefile @@ -14,3 +14,5 @@ BYTECODE_DESTINATION = $(CFERuntimeLibDir) include $(LEVEL)/Makefile.common +CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) +CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |

