diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-03 17:30:16 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-03 17:30:16 +0000 |
commit | 7fdd291c91eb89801bc6dd0ce998b9d3b0d92d10 (patch) | |
tree | fda507c2e1da831ff0b865b438f802634deb2079 /tools/Makefile | |
parent | 98e0b9c86d1385d9cf04aef92651f0cdf8a46a9e (diff) | |
download | external_llvm-7fdd291c91eb89801bc6dd0ce998b9d3b0d92d10.zip external_llvm-7fdd291c91eb89801bc6dd0ce998b9d3b0d92d10.tar.gz external_llvm-7fdd291c91eb89801bc6dd0ce998b9d3b0d92d10.tar.bz2 |
llvm-config: Start stubbing out a C++ version of llvm-config (as llvm-config-2,
for now).
- Mostly complete except for the data that needs to come from the build system
or the dependencies.
- Has some small improvements from current llvm-config:
o Uses TargetRegistry directly to get some information.
o Designed to work correctly when used from a CMake build tree (relatively
untested currently) (although pcc fixed this recently for old llvm-config).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143616 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 2da3917..278546b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -34,7 +34,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \ bugpoint llvm-bcanalyzer llvm-stub \ llvm-diff macho-dump llvm-objdump \ llvm-rtdyld llvm-dwarfdump llvm-cov \ - llvm-size + llvm-size llvm-config-2 # Let users override the set of tools to build from the command line. ifdef ONLY_TOOLS |