aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/llvm-config/llvm-config.in.in6
-rw-r--r--utils/llvm-config/llvm-config.in.in6
2 files changed, 2 insertions, 10 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in
index 74bf7a9870..6d3e07b0e3 100644
--- a/tools/llvm-config/llvm-config.in.in
+++ b/tools/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'];
}
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'];
}