diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-07-07 16:44:31 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-07-07 16:44:31 +0000 |
| commit | 599ee8972dab3b4e803406be08ea57975414794c (patch) | |
| tree | 64bc0a96ec122b9225a0ba575056d3233cbdca14 /llvm | |
| parent | 5987cfb7b1d1dc7a93d6cc2da0a054003d9e0416 (diff) | |
| download | bcm5719-llvm-599ee8972dab3b4e803406be08ea57975414794c.tar.gz bcm5719-llvm-599ee8972dab3b4e803406be08ea57975414794c.zip | |
These libs use EH info
llvm-svn: 29043
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/AsmParser/Makefile | 1 | ||||
| -rw-r--r-- | llvm/lib/Bytecode/Archive/Makefile | 3 | ||||
| -rw-r--r-- | llvm/lib/Bytecode/Reader/Makefile | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/Makefile b/llvm/lib/AsmParser/Makefile index 75ae34542a8..9755571d07c 100644 --- a/llvm/lib/AsmParser/Makefile +++ b/llvm/lib/AsmParser/Makefile @@ -10,6 +10,7 @@ LEVEL = ../.. LIBRARYNAME := LLVMAsmParser BUILD_ARCHIVE = 1 +REQUIRES_EH := 1 EXTRA_DIST := Lexer.cpp.cvs Lexer.l.cvs \ llvmAsmParser.cpp.cvs llvmAsmParser.h.cvs llvmAsmParser.y.cvs diff --git a/llvm/lib/Bytecode/Archive/Makefile b/llvm/lib/Bytecode/Archive/Makefile index e8cc803c785..37e67ca4fb1 100644 --- a/llvm/lib/Bytecode/Archive/Makefile +++ b/llvm/lib/Bytecode/Archive/Makefile @@ -12,6 +12,7 @@ LIBRARYNAME = LLVMArchive # We only want an archive so only those modules actually used by a tool are # included. -BUILD_ARCHIVE = 1 +BUILD_ARCHIVE := 1 +REQUIRES_EH := 1 include $(LEVEL)/Makefile.common diff --git a/llvm/lib/Bytecode/Reader/Makefile b/llvm/lib/Bytecode/Reader/Makefile index a86d008715f..989eba74088 100644 --- a/llvm/lib/Bytecode/Reader/Makefile +++ b/llvm/lib/Bytecode/Reader/Makefile @@ -9,6 +9,7 @@ LEVEL = ../../.. LIBRARYNAME = LLVMBCReader BUILD_ARCHIVE = 1 +REQUIRES_EH := 1 include $(LEVEL)/Makefile.common |

