| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | -funit-at-a-time is the default however some current makefiles pass ↵ | Edward O'Callaghan | 2009-10-13 | 1 | -1/+1 |
| | | | | | | | -fno-unit-at-a-time which is ignored by GCC, we should warn about this not error out. llvm-svn: 83976 | ||||
| * | Add the -nostdclanginc option to clang (the driver). | Rafael Espindola | 2009-10-06 | 1 | -0/+1 |
| | | | | | llvm-svn: 83377 | ||||
| * | Set __EXCEPTIONS by checking on darwin's triple. | Fariborz Jahanian | 2009-10-01 | 1 | -3/+8 |
| | | | | | | | Patch by Rafael Espindola. llvm-svn: 83209 | ||||
| * | Move the "needs exception support" logic to clang. This also fixes | Rafael Espindola | 2009-10-01 | 1 | -9/+29 |
| | | | | | | | | -fno-exceptions in C++ code. We used to always define __EXCEPTIONS in C++. llvm-svn: 83199 | ||||
| * | Turn on 'RegionStore' as the default store manager both for 'clang ↵ | Ted Kremenek | 2009-09-25 | 1 | -0/+3 |
| | | | | | | | --analyze' and 'scan-build'. Leave 'BasicStore' as the default store manager in 'clang-cc'. While there are still known warts with RegionStore, it's ready to be tested by general users. llvm-svn: 82752 | ||||
| * | Split Darwin toolchain into Clang and GCC Darwin toolchains with a common base. | Daniel Dunbar | 2009-09-18 | 1 | -5/+5 |
| | | | | | llvm-svn: 82213 | ||||
| * | Lift AddLinkRuntimeLibArgs into Darwin tool chain. | Daniel Dunbar | 2009-09-18 | 1 | -43/+2 |
| | | | | | llvm-svn: 82212 | ||||
| * | Move isMacosxVersionLT helpers to Darwin tool chain. | Daniel Dunbar | 2009-09-18 | 1 | -26/+18 |
| | | | | | llvm-svn: 82211 | ||||
| * | Lift getMacosxVersionMin out into Darwin ToolChain. | Daniel Dunbar | 2009-09-18 | 1 | -13/+1 |
| | | | | | llvm-svn: 82210 | ||||
| * | Lift AddLinkerSearchPaths() into Darwin tool chain. | Daniel Dunbar | 2009-09-18 | 1 | -17/+1 |
| | | | | | llvm-svn: 82209 | ||||
| * | Rename a variable to match its semantics. | Daniel Dunbar | 2009-09-18 | 1 | -16/+16 |
| | | | | | llvm-svn: 82208 | ||||
| * | Driver: Change -O to mean -O2, -O1 is meaningless. | Daniel Dunbar | 2009-09-17 | 1 | -2/+2 |
| | | | | | llvm-svn: 82131 | ||||
| * | We don't need a -compile-ast clang-cc action, we can just use -S. | Daniel Dunbar | 2009-09-17 | 1 | -4/+1 |
| | | | | | llvm-svn: 82105 | ||||
| * | Incremental improvement to logic determining whether we emit unwind tables or | Daniel Dunbar | 2009-09-16 | 1 | -4/+11 |
| | | | | | | | | not. - PR4932. llvm-svn: 82021 | ||||
| * | Support -mabi= for clang/ARM. | Daniel Dunbar | 2009-09-14 | 1 | -0/+26 |
| | | | | | llvm-svn: 81734 | ||||
| * | Swizzle the target triple based on -mthumb, and update clang-cc to recognize | Daniel Dunbar | 2009-09-11 | 1 | -3/+12 |
| | | | | | | | thumb-foo-bar as an ARM target. llvm-svn: 81497 | ||||
| * | Initial handling of -m{soft-float,hard-float,float-abi=} for ARM. | Daniel Dunbar | 2009-09-10 | 1 | -3/+61 |
| | | | | | llvm-svn: 81471 | ||||
| * | Move X86 handling of -m[no-]soft-float and -m[no-]red-zone into ↵ | Daniel Dunbar | 2009-09-10 | 1 | -10/+16 |
| | | | | | | | AddX86TargetArgs. llvm-svn: 81470 | ||||
| * | Change getLLVMArchNameForARM to just get the suffix. | Daniel Dunbar | 2009-09-10 | 1 | -11/+13 |
| | | | | | llvm-svn: 81469 | ||||
| * | Add code to mangle the triple for LLVM on ARM. | Daniel Dunbar | 2009-09-10 | 1 | -4/+58 |
| | | | | | | | - I think we should get rid of this distinction though, but I need to discuss with the interested parties. llvm-svn: 81435 | ||||
| * | Don't pass -fno-builtin-str{cat,cpy} to clang-cc, I forget we don't support ↵ | Daniel Dunbar | 2009-09-10 | 1 | -0/+4 |
| | | | | | | | that yet. PR4941. llvm-svn: 81430 | ||||
| * | ARM: Pass -mcpu to clang-cc based on -march= and -mcpu=. | Daniel Dunbar | 2009-09-10 | 1 | -0/+67 |
| | | | | | llvm-svn: 81429 | ||||
| * | Implement Darwin/ARM behavior for defaulting to -fno-builtin-str{cat,cpy}. | Daniel Dunbar | 2009-09-10 | 1 | -1/+40 |
| | | | | | llvm-svn: 81425 | ||||
| * | Add a check that -static is not used with -dynamic or -mdynamic-no-pic. | Daniel Dunbar | 2009-09-10 | 1 | -0/+17 |
| | | | | | llvm-svn: 81421 | ||||
| * | Factor out CheckPreprocessing options to share between Clang/CC1 tools. | Daniel Dunbar | 2009-09-10 | 1 | -14/+18 |
| | | | | | | | Also, fix forwarding of -C/-CC to cc1. llvm-svn: 81420 | ||||
| * | Move Clang X86 cpu/feature argument translation into AddX86TargetArgs. | Daniel Dunbar | 2009-09-09 | 1 | -40/+54 |
| | | | | | llvm-svn: 81390 | ||||
| * | Change Get{File,Program}Path to return an std::string (instead of a sys::Path). | Daniel Dunbar | 2009-09-09 | 1 | -43/+43 |
| | | | | | llvm-svn: 81389 | ||||
| * | Remove gratuitous use of c_str(). | Daniel Dunbar | 2009-09-09 | 1 | -65/+66 |
| | | | | | llvm-svn: 81388 | ||||
| * | Use Twine concatenation instead of llvm::format. | Daniel Dunbar | 2009-09-09 | 1 | -15/+12 |
| | | | | | llvm-svn: 81387 | ||||
| * | Simplify. | Daniel Dunbar | 2009-09-09 | 1 | -9/+7 |
| | | | | | llvm-svn: 81386 | ||||
| * | Use AddDarwinArch for passing arch name to assembler. | Daniel Dunbar | 2009-09-09 | 1 | -6/+5 |
| | | | | | llvm-svn: 81368 | ||||
| * | Add DarwinTool base class for all Darwin tools, and move AddDarwin[Sub]Arch ↵ | Daniel Dunbar | 2009-09-09 | 1 | -4/+4 |
| | | | | | | | there. llvm-svn: 81367 | ||||
| * | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -27/+23 |
| | | | | | llvm-svn: 81346 | ||||
| * | Remove FIXMEs for pedantically-gcc-bug-compatible behavior. | Daniel Dunbar | 2009-09-08 | 1 | -26/+4 |
| | | | | | | | | | - We aren't going to fix these since they haven't caused problems in practice. - Similarly, don't forward -object to Darwin ld. llvm-svn: 81224 | ||||
| * | Merge libgcc spec changes for darwin::Link::ConstructJob. | Daniel Dunbar | 2009-09-04 | 1 | -3/+10 |
| | | | | | llvm-svn: 81022 | ||||
| * | Tweak darwin::Link::AddLinkArgs. | Daniel Dunbar | 2009-09-04 | 1 | -1/+11 |
| | | | | | llvm-svn: 81021 | ||||
| * | Implement darwin::Link::AddDarwinArch for ARM. | Daniel Dunbar | 2009-09-04 | 1 | -1/+73 |
| | | | | | llvm-svn: 81020 | ||||
| * | Darwin: Pass -iphoneos-version-min to ld when building for ARM. | Daniel Dunbar | 2009-09-04 | 1 | -11/+11 |
| | | | | | llvm-svn: 81019 | ||||
| * | Rename Darwin_X86 toolchain to just Darwin, this can support all platforms. | Daniel Dunbar | 2009-09-04 | 1 | -4/+0 |
| | | | | | llvm-svn: 81016 | ||||
| * | Add basic support for -pthread. | Daniel Dunbar | 2009-09-03 | 1 | -0/+2 |
| | | | | | | | - Patch by David Chisnall, with PCH and Darwin support mixed in. llvm-svn: 80883 | ||||
| * | Add driver support for -emit-ast and AST compilation steps. | Daniel Dunbar | 2009-09-01 | 1 | -2/+20 |
| | | | | | | | - <rdar://problem/7185031> Add 'clang' option '-emit-ast' llvm-svn: 80678 | ||||
| * | Updated GNU runtime non-fragile ABI. | David Chisnall | 2009-08-31 | 1 | -0/+5 |
| | | | | | | | | Added -fconstant-string-class= option. Added __has_feature() test for non-fragile ABI. llvm-svn: 80591 | ||||
| * | PR4766: Don't pass -static to 'as' on x86_64 on Darwin. | Daniel Dunbar | 2009-08-24 | 1 | -3/+3 |
| | | | | | | | Also, do pass -static even with -dynamic on i386. llvm-svn: 79948 | ||||
| * | Second half of, clang, AuroraUX toolchain support. | Edward O'Callaghan | 2009-08-22 | 1 | -0/+129 |
| | | | | | llvm-svn: 79713 | ||||
| * | Fix -fno-omit-frame-pointer bug Eli noticed. | Benjamin Kramer | 2009-08-05 | 1 | -2/+2 |
| | | | | | llvm-svn: 78233 | ||||
| * | Translate -mcmodel=X to -code-model X and pass it to clang-cc. Patch by ↵ | Benjamin Kramer | 2009-08-05 | 1 | -0/+5 |
| | | | | | | | Pawel Worach! llvm-svn: 78190 | ||||
| * | Add support for the -fno-omit-frame-pointer option. Patch by Roman Divacky! | Benjamin Kramer | 2009-08-05 | 1 | -1/+2 |
| | | | | | llvm-svn: 78188 | ||||
| * | Driver/OpenBSD: Improve ld options. | Daniel Dunbar | 2009-08-03 | 1 | -2/+18 |
| | | | | | | | - Patch by Jonathan Gray! llvm-svn: 77935 | ||||
| * | Add beginnigs of rtti generation, wire up more of -fno-exceptions. | Mike Stump | 2009-07-31 | 1 | -1/+15 |
| | | | | | llvm-svn: 77751 | ||||
| * | Have 'clang --analyze' run syntactic static analysis security checks. | Ted Kremenek | 2009-07-24 | 1 | -0/+1 |
| | | | | | llvm-svn: 76996 | ||||

