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

llvm-svn: 27021
This commit is contained in:
Reid Spencer 2006-03-24 01:10:39 +00:00
parent c5c9034e7f
commit 76fdc46b2c

View 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'];
}