[llvm-commits] CVS: llvm/utils/llvm-config/llvm-config.in.in

Reid Spencer reid at x10sys.com
Thu Mar 23 17:10:52 PST 2006



Changes in directory llvm/utils/llvm-config:

llvm-config.in.in updated: 1.2 -> 1.3
---
Log message:

Remove the interpreter component as its not working at the moment.


---
Diffs of the changes:  (+1 -5)

 llvm-config.in.in |    6 +-----
 1 files changed, 1 insertion(+), 5 deletions(-)


Index: llvm/utils/llvm-config/llvm-config.in.in
diff -u llvm/utils/llvm-config/llvm-config.in.in:1.2 llvm/utils/llvm-config/llvm-config.in.in:1.3
--- llvm/utils/llvm-config/llvm-config.in.in:1.2	Thu Mar 23 17:21:29 2006
+++ llvm/utils/llvm-config/llvm-config.in.in	Thu Mar 23 19:10:39 2006
@@ -250,11 +250,7 @@
 # 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'];
     }






More information about the llvm-commits mailing list