[llvm-commits] [llvm] r144202 - /llvm/trunk/tools/llvm-config/llvm-config.in.in

Daniel Dunbar daniel at zuster.org
Wed Nov 9 11:23:15 PST 2011


Author: ddunbar
Date: Wed Nov  9 13:23:15 2011
New Revision: 144202

URL: http://llvm.org/viewvc/llvm-project?rev=144202&view=rev
Log:
llvm-config: Drop 'backend' pseudo-component. We don't support/qualify the CBE
enough to have this be useful.

Modified:
    llvm/trunk/tools/llvm-config/llvm-config.in.in

Modified: llvm/trunk/tools/llvm-config/llvm-config.in.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-config/llvm-config.in.in?rev=144202&r1=144201&r2=144202&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-config/llvm-config.in.in (original)
+++ llvm/trunk/tools/llvm-config/llvm-config.in.in Wed Nov  9 13:23:15 2011
@@ -197,7 +197,6 @@
   --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 @@
     # 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.





More information about the llvm-commits mailing list