diff options
Diffstat (limited to 'projects/sample/configure')
-rwxr-xr-x | projects/sample/configure | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/projects/sample/configure b/projects/sample/configure index 539e27d854..48c0c2acb7 100755 --- a/projects/sample/configure +++ b/projects/sample/configure @@ -5306,6 +5306,9 @@ _ACEOF if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/AsmParser/Makefile ; then LLVM_NATIVE_ASMPARSER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser" fi + if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/Disassembler/Makefile ; then + LLVM_NATIVE_DISASSEMBLER="LLVMInitialize${LLVM_NATIVE_ARCH}Disassembler" + fi cat >>confdefs.h <<_ACEOF #define LLVM_NATIVE_TARGET $LLVM_NATIVE_TARGET @@ -5333,6 +5336,13 @@ cat >>confdefs.h <<_ACEOF _ACEOF fi + if test -f ${srcdir}/lib/Target/${LLVM_NATIVE_ARCH}/Disassembler/Makefile ; then + +cat >>confdefs.h <<_ACEOF +#define LLVM_NATIVE_DISASSEMBLER $LLVM_NATIVE_DISASSEMBLER +_ACEOF + + fi fi done @@ -10290,7 +10300,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 10293 "configure" +#line 10303 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |