]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/commit - lib/clang/libllvminterpreter/Makefile
MFC r231057:
authordim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sun, 19 Feb 2012 23:35:56 +0000 (23:35 +0000)
committerdim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sun, 19 Feb 2012 23:35:56 +0000 (23:35 +0000)
commit8647acf07c560d46172bd704b4d0fa95fbbca146
tree02c40058cc8f7063a73cd6198bd8b3d47c54fd65
parent901d446590df4bba26a02fe05ed2168069134aa6
MFC r231057:

Add a WITH_CLANG_EXTRAS option for src.conf(5), disabled by default,
that builds the following additional llvm/clang tools:

- bugpoint
- llc
- lli
- llvm-ar
- llvm-as
- llvm-bcanalyzer
- llvm-diff
- llvm-dis
- llvm-extract
- llvm-ld
- llvm-link
- llvm-mc
- llvm-nm
- llvm-objdump
- llvm-prof
- llvm-ranlib
- llvm-rtdyld
- llvm-stub
- macho-dump
- opt

These tools are mainly useful for people that want to manipulate llvm
bitcode (.bc) and llvm assembly language (.ll) files, or want to tinker
with llvm and clang themselves.

git-svn-id: svn://svn.freebsd.org/base/stable/9@231919 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
146 files changed:
contrib/llvm/tools/bugpoint/BugDriver.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/BugDriver.h [new file with mode: 0644]
contrib/llvm/tools/bugpoint/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/bugpoint/CrashDebugger.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/ExecutionDriver.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/ExtractFunction.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/FindBugs.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/ListReducer.h [new file with mode: 0644]
contrib/llvm/tools/bugpoint/Makefile [new file with mode: 0644]
contrib/llvm/tools/bugpoint/Miscompilation.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/OptimizerDriver.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/ToolRunner.cpp [new file with mode: 0644]
contrib/llvm/tools/bugpoint/ToolRunner.h [new file with mode: 0644]
contrib/llvm/tools/bugpoint/bugpoint.cpp [new file with mode: 0644]
contrib/llvm/tools/llc/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llc/Makefile [new file with mode: 0644]
contrib/llvm/tools/llc/llc.cpp [new file with mode: 0644]
contrib/llvm/tools/lli/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/lli/Makefile [new file with mode: 0644]
contrib/llvm/tools/lli/lli.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-ar/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-ar/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-ar/llvm-ar.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-as/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-as/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-as/llvm-as.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-bcanalyzer/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-bcanalyzer/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DiffConsumer.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DiffConsumer.h [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DiffLog.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DiffLog.h [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/DifferenceEngine.h [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-diff/llvm-diff.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-dis/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-dis/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-dis/llvm-dis.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-extract/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-extract/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-extract/llvm-extract.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-ld/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-ld/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-ld/Optimize.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-ld/llvm-ld.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-link/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-link/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-link/llvm-link.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-mc/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-mc/Disassembler.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-mc/Disassembler.h [new file with mode: 0644]
contrib/llvm/tools/llvm-mc/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-mc/llvm-mc.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-nm/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-nm/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-nm/llvm-nm.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/MCFunction.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/MCFunction.h [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/MachODump.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/llvm-objdump.h [new file with mode: 0644]
contrib/llvm/tools/llvm-prof/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-prof/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-prof/llvm-prof.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-ranlib/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-ranlib/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-rtdyld/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-rtdyld/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-stub/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/llvm-stub/Makefile [new file with mode: 0644]
contrib/llvm/tools/llvm-stub/llvm-stub.c [new file with mode: 0644]
contrib/llvm/tools/macho-dump/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/macho-dump/Makefile [new file with mode: 0644]
contrib/llvm/tools/macho-dump/macho-dump.cpp [new file with mode: 0644]
contrib/llvm/tools/opt/AnalysisWrappers.cpp [new file with mode: 0644]
contrib/llvm/tools/opt/CMakeLists.txt [new file with mode: 0644]
contrib/llvm/tools/opt/GraphPrinters.cpp [new file with mode: 0644]
contrib/llvm/tools/opt/Makefile [new file with mode: 0644]
contrib/llvm/tools/opt/PrintSCC.cpp [new file with mode: 0644]
contrib/llvm/tools/opt/opt.cpp [new file with mode: 0644]
lib/clang/Makefile
lib/clang/libllvmanalysis/Makefile
lib/clang/libllvmarchive/Makefile [new file with mode: 0644]
lib/clang/libllvmdebuginfo/Makefile [new file with mode: 0644]
lib/clang/libllvmexecutionengine/Makefile [new file with mode: 0644]
lib/clang/libllvminterpreter/Makefile [new file with mode: 0644]
lib/clang/libllvmipa/Makefile
lib/clang/libllvmipo/Makefile
lib/clang/libllvmjit/Makefile [new file with mode: 0644]
lib/clang/libllvmlinker/Makefile [new file with mode: 0644]
lib/clang/libllvmmc/Makefile
lib/clang/libllvmmcdisassembler/Makefile [new file with mode: 0644]
lib/clang/libllvmmcjit/Makefile [new file with mode: 0644]
lib/clang/libllvmobject/Makefile [new file with mode: 0644]
lib/clang/libllvmruntimedyld/Makefile [new file with mode: 0644]
lib/clang/libllvmscalaropts/Makefile
lib/clang/libllvmsupport/Makefile
lib/clang/libllvmtransformutils/Makefile
lib/clang/libllvmx86disassembler/Makefile
share/man/man5/src.conf.5
share/mk/bsd.own.mk
tools/build/mk/OptionalObsoleteFiles.inc
tools/build/options/WITH_CLANG_EXTRAS [new file with mode: 0644]
usr.bin/clang/Makefile
usr.bin/clang/bugpoint/Makefile [new file with mode: 0644]
usr.bin/clang/bugpoint/bugpoint.1 [new file with mode: 0644]
usr.bin/clang/llc/Makefile [new file with mode: 0644]
usr.bin/clang/llc/llc.1 [new file with mode: 0644]
usr.bin/clang/lli/Makefile [new file with mode: 0644]
usr.bin/clang/lli/lli.1 [new file with mode: 0644]
usr.bin/clang/llvm-ar/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-ar/llvm-ar.1 [new file with mode: 0644]
usr.bin/clang/llvm-as/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-as/llvm-as.1 [new file with mode: 0644]
usr.bin/clang/llvm-bcanalyzer/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 [new file with mode: 0644]
usr.bin/clang/llvm-diff/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-diff/llvm-diff.1 [new file with mode: 0644]
usr.bin/clang/llvm-dis/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-dis/llvm-dis.1 [new file with mode: 0644]
usr.bin/clang/llvm-extract/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-extract/llvm-extract.1 [new file with mode: 0644]
usr.bin/clang/llvm-ld/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-ld/llvm-ld.1 [new file with mode: 0644]
usr.bin/clang/llvm-link/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-link/llvm-link.1 [new file with mode: 0644]
usr.bin/clang/llvm-mc/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-nm/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-nm/llvm-nm.1 [new file with mode: 0644]
usr.bin/clang/llvm-objdump/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-prof/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-prof/llvm-prof.1 [new file with mode: 0644]
usr.bin/clang/llvm-ranlib/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-ranlib/llvm-ranlib.1 [new file with mode: 0644]
usr.bin/clang/llvm-rtdyld/Makefile [new file with mode: 0644]
usr.bin/clang/llvm-stub/Makefile [new file with mode: 0644]
usr.bin/clang/macho-dump/Makefile [new file with mode: 0644]
usr.bin/clang/opt/Makefile [new file with mode: 0644]
usr.bin/clang/opt/opt.1 [new file with mode: 0644]