summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-14 19:10:47 +0000
committerChris Lattner <sabre@nondot.org>2010-11-14 19:10:47 +0000
commite15f2e17ea27f3c2e9aae695e5bf6c4bf21097b1 (patch)
tree2e9e73ee97eaff67e7e4419eb4d8fe98c5b2646e /configure
parent1139691e3aadff751c035f38f835d436ec6cf10a (diff)
downloadllvm-e15f2e17ea27f3c2e9aae695e5bf6c4bf21097b1.tar.gz
llvm-e15f2e17ea27f3c2e9aae695e5bf6c4bf21097b1.tar.bz2
llvm-e15f2e17ea27f3c2e9aae695e5bf6c4bf21097b1.tar.xz
fix the autoconf script to detect "has asmprinter"ness of a target by
looking for lib/Target/*AsmPrinter.cpp. Fix llvm-config to handle targets that don't have an explicit AsmPrinter library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure b/configure
index d65e2ff316..cafc334c9d 100755
--- a/configure
+++ b/configure
@@ -5100,11 +5100,7 @@ LLVM_ENUM_ASM_PARSERS=""
LLVM_ENUM_DISASSEMBLERS=""
for target_to_build in $TARGETS_TO_BUILD; do
LLVM_ENUM_TARGETS="LLVM_TARGET($target_to_build) $LLVM_ENUM_TARGETS"
- if test -f ${srcdir}/lib/Target/${target_to_build}/AsmPrinter/Makefile ; then
- LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
- fi
- # MC-ized AsmPrinters live in TARGET/InstPrinter, not AsmPrinter
- if test -f ${srcdir}/lib/Target/${target_to_build}/InstPrinter/Makefile ; then
+ if test -f ${srcdir}/lib/Target/${target_to_build}/*AsmPrinter.cpp ; then
LLVM_ENUM_ASM_PRINTERS="LLVM_ASM_PRINTER($target_to_build) $LLVM_ENUM_ASM_PRINTERS";
fi
if test -f ${srcdir}/lib/Target/${target_to_build}/AsmParser/Makefile ; then