summaryrefslogtreecommitdiff
path: root/tools/llvm-config
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-09 19:23:15 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-09 19:23:15 +0000
commit4cb5fff50b71ff9c2cebff09144c20f812529fc9 (patch)
tree36e32b7b83fd078bdf9adfb9f741aae460f81d55 /tools/llvm-config
parent12d9a4629bff8a7120b8fe0ecc8ebcb0e9438562 (diff)
downloadllvm-4cb5fff50b71ff9c2cebff09144c20f812529fc9.tar.gz
llvm-4cb5fff50b71ff9c2cebff09144c20f812529fc9.tar.bz2
llvm-4cb5fff50b71ff9c2cebff09144c20f812529fc9.tar.xz
llvm-config: Drop 'backend' pseudo-component. We don't support/qualify the CBE
enough to have this be useful. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144202 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-config')
-rw-r--r--tools/llvm-config/llvm-config.in.in2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/llvm-config/llvm-config.in.in b/tools/llvm-config/llvm-config.in.in
index a456dc6e77..d811e59abb 100644
--- a/tools/llvm-config/llvm-config.in.in
+++ b/tools/llvm-config/llvm-config.in.in
@@ -197,7 +197,6 @@ Options:
--build-mode Print build mode of LLVM tree (e.g. Debug or Release).
Typical components:
all All LLVM libraries (default).
- backend Either a native backend or the C backend.
engine Either a native JIT or a bitcode interpreter.
__EOD__
exit(1);
@@ -344,7 +343,6 @@ sub build_name_map {
# Add virtual entries.
$NAME_MAP{'native'} = have_native_backend() ? [$ARCH] : [];
$NAME_MAP{'nativecodegen'} = have_native_backend() ? [$ARCH.'codegen'] : [];
- $NAME_MAP{'backend'} = have_native_backend() ? ['native'] : ['cbackend'];
$NAME_MAP{'engine'} = find_best_engine;
$NAME_MAP{'all-targets'} = \@all_targets;
$NAME_MAP{'all'} = [name_map_entries]; # Must be last.