summaryrefslogtreecommitdiffstats
path: root/clang/lib/Driver
Commit message (Collapse)AuthorAgeFilesLines
* Fake support for -print-multi-*Daniel Dunbar2009-06-161-0/+41
| | | | | | | - I think we will eventually need to support this for realz, and some build processes seem to depend on these options. llvm-svn: 73581
* Fix typo in prev commit.Daniel Dunbar2009-06-161-1/+1
| | | | llvm-svn: 73556
* Darwin/Driver: Also look at -arch command line options when finding the defaultDaniel Dunbar2009-06-161-8/+26
| | | | | | tool chain. llvm-svn: 73555
* Forward -C and -CC to clang.Daniel Dunbar2009-06-081-1/+10
| | | | | | - <rdar://problem/6945384> Driver should pass down -C and -CC llvm-svn: 73087
* PR4016: Forward -fno-show-source-location to clang.Daniel Dunbar2009-06-081-1/+4
| | | | llvm-svn: 73082
* Set function Attribute::NoImplicitFloat appropriately.Devang Patel2009-06-051-1/+1
| | | | llvm-svn: 72961
* Add driver support for -fsigned-char/-funsigned-char.Eli Friedman2009-06-051-0/+10
| | | | llvm-svn: 72930
* forward -fno-color-diagnostics to clang-cc.Torok Edwin2009-06-041-0/+3
| | | | llvm-svn: 72856
* PR4308: Fix support for -m32/-m64 on Linux.Eli Friedman2009-06-031-7/+22
| | | | | | I'll look into cleaning this up a bit as a followup. llvm-svn: 72794
* Driver: Support -mllvm; this just forwards options to clang-cc.Daniel Dunbar2009-06-031-0/+1
| | | | llvm-svn: 72780
* Fix rare failure of .ver-svn creation, it has a dependency that the outputDaniel Dunbar2009-06-011-1/+1
| | | | | | directory exist. llvm-svn: 72704
* ARM is a legitimate Darwin architecture; don't assert.Eli Friedman2009-05-281-1/+2
| | | | llvm-svn: 72538
* Fix for PR4140: Add the start of a Linux toolchain (basically, just Eli Friedman2009-05-264-0/+82
| | | | | | barely enough to get the given usage of -print-file-name working). llvm-svn: 72412
* Fix use after free, found by Benjamin Kramer.Daniel Dunbar2009-05-231-3/+3
| | | | llvm-svn: 72333
* This patch adds support for sender-aware dispatch in Objective-C for the GNU ↵Fariborz Jahanian2009-05-221-0/+1
| | | | | | | | | | runtime, when compiled with -fobjc-sender-dependent-dispatch. This is used in AOP, COP, implementing object planes, and a few other things. Patch by David Chisnall. llvm-svn: 72275
* Don't warn about -funit-at-a-time, and reject -fno-unit-at-a-time.Daniel Dunbar2009-05-221-1/+9
| | | | | | | | | | - We could just warn about -fno-unit-at-a-time, but in practice people using it probably aren't going to get what they want out of clang. Also, use "clang" specified error for unsupported things instead of driver unsupported error. llvm-svn: 72272
* (llvm up) Use llvm::Triple for storing target triples.Daniel Dunbar2009-05-225-138/+108
| | | | | | | - This commit has some messy stuff in it to extend string lifetimes, but that will go away once we switch to using the enum'd Triple interfaces. llvm-svn: 72243
* Don't rely on getArchName() to return a constant string reference.Daniel Dunbar2009-05-221-11/+14
| | | | llvm-svn: 72241
* Add --analyzer-no-default-checks and --analyzer-output options.Daniel Dunbar2009-05-221-13/+19
| | | | llvm-svn: 72238
* Remove -fprintf-source-range-info from the Driver (this was renamed)Daniel Dunbar2009-05-181-1/+0
| | | | llvm-svn: 72061
* Reformat a commentDaniel Dunbar2009-05-181-5/+4
| | | | llvm-svn: 72046
* Driver: Emit an unsupported error on -iframework.Daniel Dunbar2009-05-131-1/+2
| | | | llvm-svn: 71698
* Tweak x86 -mcpu defaults.Daniel Dunbar2009-05-061-0/+5
| | | | | | | | | - Default to yonah on Darwin (to get SSE3). - Default to Pentium4 (32-bit) and x86-64 (64-bit) on non-Darwin. Welcome to the 21st century. llvm-svn: 71069
* Improve handling of (X86) target features.Daniel Dunbar2009-05-061-51/+47
| | | | | | | | | | | | | | | | | | | | | - This is a WIP... - This adds -march= handling to the driver, and fixes the defaulting of -mcpu on Darwin (which was using the wrong test). Instead of handling -m{sse, ...} in the driver, pass them to clang-cc as -target-feature [+-]name In clang-cc, communicate with the (clang) target to discover the legal features of a target, and the features which are enabled based on -mcpu. This is currently hardcoded just enough to not be a feature regression, we need to get this information from the backend's TableGen information somehow. This is used to construct the full list of features which are being used, which is in turn used to initialize the predefines. llvm-svn: 71061
* Add --analyze-auto.Daniel Dunbar2009-05-061-2/+3
| | | | | | | | - Currently just an alias for --analyze, eventually we want to refit --analyze so that it is less automatic (i.e., does not force plist output and does not hard code the list of checks). llvm-svn: 71056
* Add -fobjc-tight-layout.Daniel Dunbar2009-05-041-0/+1
| | | | | | | | | | | | | | | | | | | - This implements gcc style Objective-C interface layout (I think). Currently it is always off, there is no functionality change unless this is passed. For the curious, the deal is that gcc lays out the fields of a subclass as if they were part of the superclass. That is, the subclass fields immediately follow the super class fields instead of being padded to the alignment of the superclass structure. - Currently gcc uses the tight layout in 32-bit and 64-bit modes, and llvm-gcc uses it in 32-bit only, for reasons which aren't clear yet. We probably want to switch to matching gcc, once this makes it through testing... my hope is that we can also fix llvm-gcc in order to maintain compatibility between the compilers. llvm-svn: 70827
* Driver: When using the generic gcc tool, pass -m32 or -m64 if weDaniel Dunbar2009-05-021-1/+10
| | | | | | | | | recognize the architecture. - This is an attempt to force gcc to the write target. - PR4094. llvm-svn: 70647
* Driver: Generate an error when trying to pass an LLVM bc input to aDaniel Dunbar2009-05-021-2/+22
| | | | | | non-Darwin linker (sorry Gold + LTO-plugin users). llvm-svn: 70641
* DragonFly ToolChain definition for driver.Daniel Dunbar2009-05-026-3/+306
| | | | | | - Patch by Alex Hornung! llvm-svn: 70635
* Implement -fmessage-length=N, which word-wraps diagnostics to N columns. Douglas Gregor2009-05-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Also, put a line of whitespace between the diagnostic and the source code/caret line when the start of the actual source code text lines up (or nearly lines up) with the most recent line of the diagnostic. For example, here it's okay for the last line of the diagnostic to be (vertically) next to the source line, because there is horizontal whitespace to separate them: decl-expr-ambiguity.cpp:12:16: error: function-style cast to a builtin type can only take one argument typeof(int)(a,5)<<a; However, here is a case where we need the vertical separation (since there is no horizontal separation): message-length.c:10:46: warning: incompatible pointer types initializing 'void (int, float, char, float)', expected 'int (*)(int, float, short, float)' int (*fp1)(int, float, short, float) = f; This is part one of <rdar://problem/6711348>. llvm-svn: 70578
* Revert r70424. We don't need itDouglas Gregor2009-04-291-3/+0
| | | | llvm-svn: 70432
* Add PCH version to the -v outputDouglas Gregor2009-04-291-0/+3
| | | | llvm-svn: 70424
* Make sure to pass the same options to the static analyzer as theDaniel Dunbar2009-04-291-140/+140
| | | | | | | compiler. - Code generation options may still affect the language... llvm-svn: 70393
* Enable PCH by defaultDouglas Gregor2009-04-281-1/+1
| | | | llvm-svn: 70339
* With -ccc-pch-is-pch, always treat precompiled inputs as PCH,Daniel Dunbar2009-04-281-1/+1
| | | | | | | | regardless of extension. - Otherwise we can't expect that just plugging in -ccc-pch-is-pch will work. llvm-svn: 70318
* Add a header containing the Clang version; make the driver use thisDouglas Gregor2009-04-271-4/+5
| | | | | | | | | Clang version value rather than hard-coding "1.0". Add PCH and Clang version information into the PCH file. Reject PCH files with the wrong version information. llvm-svn: 70264
* Turn PCH off by default, yet again. I'm happier about it this time, thoughDouglas Gregor2009-04-261-1/+1
| | | | llvm-svn: 70168
* Trying turning on PCH by default yet again. We might actually a chance at ↵Douglas Gregor2009-04-261-1/+1
| | | | | | success now llvm-svn: 70164
* Turn off PCH by default, againDouglas Gregor2009-04-261-1/+1
| | | | llvm-svn: 70113
* One more crazy try with PCH-by-defaultDouglas Gregor2009-04-261-1/+1
| | | | llvm-svn: 70112
* Turn of PCH by default. I got the info I was looking forDouglas Gregor2009-04-261-1/+1
| | | | llvm-svn: 70106
* Driver: Add -std-default= option.Daniel Dunbar2009-04-261-1/+16
| | | | | | | | | - This can be used to supply a default value for -std=; the idea is that this can be used in conjunction with CCC_ADD_ARGS or QA_OVERRIDE_GCC3_OPTIONS to change the default without having to modify the build system. llvm-svn: 70102
* Add option for AddAllArgsTranslated to control whether output argumentDaniel Dunbar2009-04-261-3/+11
| | | | | | should be joined or separate. llvm-svn: 70101
* Another shot at switching PCH on by default, now that we've cleaned up some ↵Douglas Gregor2009-04-261-1/+1
| | | | | | bugs and improved performance. Will be reverted after Mr. Speedy gets done with it llvm-svn: 70099
* Revert my PCH change. I'm happy nowDouglas Gregor2009-04-251-1/+1
| | | | llvm-svn: 70018
* Temporarily try to build with PCH by default. Revert this change onceDouglas Gregor2009-04-251-1/+1
| | | | | | we see what trouble it causes. llvm-svn: 70017
* Driver: -mkernel disables default use of unwind tables (although IDaniel Dunbar2009-04-251-1/+2
| | | | | | don't yet understand where this is happening in llvm-gcc). llvm-svn: 70012
* Driver: -mkernel and -fapple-kext imply -mno-red-zone.Daniel Dunbar2009-04-251-1/+3
| | | | llvm-svn: 70010
* Don't run dsymutil when making a fat executable direct source.Daniel Dunbar2009-04-241-1/+7
| | | | | | | | | | | | | | - Otherwise, we will end up with stray .dSYM files which don't get lipo'ed or removed. - Ideally we would run dsymutil on the result, but we don't have the infrastructure for that yet. Note that gcc doesn't handle this case either. - <rdar://problem/6809621> [driver] clang leaves .dSYM files lying around in tmp. llvm-svn: 69951
* Call ld, not collect2.Daniel Dunbar2009-04-231-1/+1
| | | | | | - <rdar://problem/6517382> [driver] call ld directly llvm-svn: 69938
OpenPOWER on IntegriCloud