From 7c339b8ca26d1a67ff104c7a4011728a10b22dd5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 7 Jul 2006 16:44:31 +0000 Subject: [PATCH] These libs use EH info git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29043 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Archive/Makefile | 3 ++- lib/AsmParser/Makefile | 1 + lib/Bytecode/Archive/Makefile | 3 ++- lib/Bytecode/Reader/Makefile | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/Archive/Makefile b/lib/Archive/Makefile index e8cc803c785..37e67ca4fb1 100644 --- a/lib/Archive/Makefile +++ b/lib/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/lib/AsmParser/Makefile b/lib/AsmParser/Makefile index 75ae34542a8..9755571d07c 100644 --- a/lib/AsmParser/Makefile +++ b/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/lib/Bytecode/Archive/Makefile b/lib/Bytecode/Archive/Makefile index e8cc803c785..37e67ca4fb1 100644 --- a/lib/Bytecode/Archive/Makefile +++ b/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/lib/Bytecode/Reader/Makefile b/lib/Bytecode/Reader/Makefile index a86d008715f..989eba74088 100644 --- a/lib/Bytecode/Reader/Makefile +++ b/lib/Bytecode/Reader/Makefile @@ -9,6 +9,7 @@ LEVEL = ../../.. LIBRARYNAME = LLVMBCReader BUILD_ARCHIVE = 1 +REQUIRES_EH := 1 include $(LEVEL)/Makefile.common -- 2.34.1