diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-03-24 01:10:39 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-03-24 01:10:39 +0000 |
commit | 1c070fc10b1cdd156ab55bd04c4b21bc735e82c7 (patch) | |
tree | 07f4d4ffd3babe2bf5676f3758a398550da66a1c /utils | |
parent | 3e8f3ce8f6d7fb7bee4cf7ac27bea2e90f83b25d (diff) |
Remove the interpreter component as its not working at the moment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/llvm-config/llvm-config.in.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/utils/llvm-config/llvm-config.in.in b/utils/llvm-config/llvm-config.in.in index 74bf7a9870..6d3e07b0e3 100644 --- a/utils/llvm-config/llvm-config.in.in +++ b/utils/llvm-config/llvm-config.in.in @@ -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']; } |