diff options
Diffstat (limited to 'usr.bin/clang')
-rw-r--r-- | usr.bin/clang/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/clang/clang-tblgen/Makefile | 18 | ||||
-rw-r--r-- | usr.bin/clang/clang/clang.1 | 9 | ||||
-rw-r--r-- | usr.bin/clang/tblgen/Makefile | 14 |
4 files changed, 27 insertions, 16 deletions
diff --git a/usr.bin/clang/Makefile b/usr.bin/clang/Makefile index 0096d42..ef5a0e7 100644 --- a/usr.bin/clang/Makefile +++ b/usr.bin/clang/Makefile @@ -1,5 +1,5 @@ # $FreeBSD$ -SUBDIR= clang tblgen +SUBDIR= clang clang-tblgen tblgen .include <bsd.subdir.mk> diff --git a/usr.bin/clang/clang-tblgen/Makefile b/usr.bin/clang/clang-tblgen/Makefile new file mode 100644 index 0000000..aedbeb4 --- /dev/null +++ b/usr.bin/clang/clang-tblgen/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PROG_CXX=clang-tblgen +NO_MAN= + +SRCDIR= tools/clang/utils/TableGen +SRCS= ClangASTNodesEmitter.cpp \ + ClangAttrEmitter.cpp \ + ClangDiagnosticsEmitter.cpp \ + ClangSACheckersEmitter.cpp \ + NeonEmitter.cpp \ + OptParserEmitter.cpp \ + TableGen.cpp +LLVM_REQUIRES_EH= + +LIBDEPS=llvmtablegen llvmsupport + +.include "../clang.prog.mk" diff --git a/usr.bin/clang/clang/clang.1 b/usr.bin/clang/clang/clang.1 index f32742e..d8884df 100644 --- a/usr.bin/clang/clang/clang.1 +++ b/usr.bin/clang/clang/clang.1 @@ -125,7 +125,7 @@ .\" ======================================================================== .\" .IX Title "CLANG 1" -.TH CLANG 1 "2011-04-30" "clang 3.0" "Clang Tools Documentation" +.TH CLANG 1 "2011-10-17" "clang 3.0" "Clang Tools Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -456,7 +456,12 @@ Add the specified directory to the search path for include files. Add the specified directory to the search path for framework include files. .IP "\fB\-nostdinc\fR" 4 .IX Item "-nostdinc" -Do not search the standard system directories for include files. +Do not search the standard system directories or compiler builtin directories +for include files. +.IP "\fB\-nostdlibinc\fR" 4 +.IX Item "-nostdlibinc" +Do not search the standard system directories for include files, but do search +compiler builting include directories. .IP "\fB\-nobuiltininc\fR" 4 .IX Item "-nobuiltininc" Do not search clang's builtin directory for include files. diff --git a/usr.bin/clang/tblgen/Makefile b/usr.bin/clang/tblgen/Makefile index 6962406..4eba106 100644 --- a/usr.bin/clang/tblgen/Makefile +++ b/usr.bin/clang/tblgen/Makefile @@ -8,10 +8,6 @@ SRCS= ARMDecoderEmitter.cpp \ AsmWriterEmitter.cpp \ AsmWriterInst.cpp \ CallingConvEmitter.cpp \ - ClangASTNodesEmitter.cpp \ - ClangAttrEmitter.cpp \ - ClangDiagnosticsEmitter.cpp \ - ClangSACheckersEmitter.cpp \ CodeEmitterGen.cpp \ CodeGenDAGPatterns.cpp \ CodeGenInstruction.cpp \ @@ -24,30 +20,22 @@ SRCS= ARMDecoderEmitter.cpp \ DAGISelMatcherOpt.cpp \ DisassemblerEmitter.cpp \ EDEmitter.cpp \ - Error.cpp \ FastISelEmitter.cpp \ FixedLenDecoderEmitter.cpp \ InstrEnumEmitter.cpp \ InstrInfoEmitter.cpp \ IntrinsicEmitter.cpp \ - LLVMCConfigurationEmitter.cpp \ - NeonEmitter.cpp \ - OptParserEmitter.cpp \ PseudoLoweringEmitter.cpp \ - Record.cpp \ RegisterInfoEmitter.cpp \ SetTheory.cpp \ StringMatcher.cpp \ SubtargetEmitter.cpp \ - TGLexer.cpp \ - TGParser.cpp \ TGValueTypes.cpp \ TableGen.cpp \ - TableGenBackend.cpp \ X86DisassemblerTables.cpp \ X86RecognizableInstr.cpp LLVM_REQUIRES_EH= -LIBDEPS=llvmsupport +LIBDEPS=llvmtablegen llvmsupport .include "../clang.prog.mk" |