diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-14 19:10:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-14 19:10:47 +0000 |
commit | e15f2e17ea27f3c2e9aae695e5bf6c4bf21097b1 (patch) | |
tree | 2e9e73ee97eaff67e7e4419eb4d8fe98c5b2646e /autoconf | |
parent | 1139691e3aadff751c035f38f835d436ec6cf10a (diff) |
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 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 09e3379f36..74cb0aa7c2 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -650,11 +650,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 |