Remove the interpreter component as its not working at the moment.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 24 Mar 2006 01:10:39 +0000 (01:10 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 24 Mar 2006 01:10:39 +0000 (01:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27021 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-config/llvm-config.in.in
utils/llvm-config/llvm-config.in.in

index 74bf7a9870eb98aec7022a838a429af2384e199c..6d3e07b0e361685ebb589c06baae8090243978d7 100644 (file)
@@ -250,11 +250,7 @@ sub have_native_backend {
 # Find a working subclass of ExecutionEngine for this platform.
 sub find_best_engine {
     if (have_native_backend && $TARGET_HAS_JIT) {
-        # XXX - Right now, if we omit the interpreter, we get a linker
-        # error complaining about
-        # __ZN4llvm11Interpreter6createEPNS_6ModuleEPNS_17IntrinsicLoweringE.
-        # This needs investigation.
-        return ['jit', 'native', 'interpreter'];
+        return ['jit', 'native'];
     } else {
         return ['interpreter'];
     }
index 74bf7a9870eb98aec7022a838a429af2384e199c..6d3e07b0e361685ebb589c06baae8090243978d7 100644 (file)
@@ -250,11 +250,7 @@ sub have_native_backend {
 # Find a working subclass of ExecutionEngine for this platform.
 sub find_best_engine {
     if (have_native_backend && $TARGET_HAS_JIT) {
-        # XXX - Right now, if we omit the interpreter, we get a linker
-        # error complaining about
-        # __ZN4llvm11Interpreter6createEPNS_6ModuleEPNS_17IntrinsicLoweringE.
-        # This needs investigation.
-        return ['jit', 'native', 'interpreter'];
+        return ['jit', 'native'];
     } else {
         return ['interpreter'];
     }