| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Move char-is-signed defaulting to driver, instead of using | Daniel Dunbar | 2009-11-17 | 1 | -9/+22 | |
| | | | | | | | getDefaultLangOptions. llvm-svn: 89053 | |||||
| * | Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. | Daniel Dunbar | 2009-11-14 | 1 | -10/+25 | |
| | | | | | | | | - We still need support for detecting the target features, since the name doesn't actually do a good job of decribing what the CPU supports (for LLVM). llvm-svn: 88819 | |||||
| * | Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. | Edward O'Callaghan | 2009-11-08 | 1 | -0/+4 | |
| | | | | | llvm-svn: 86459 | |||||
| * | Adding -fshort-wchar option. | John Thompson | 2009-11-05 | 1 | -0/+7 | |
| | | | | | llvm-svn: 86167 | |||||
| * | Move -fcolor-diagnostics logic to driver. | Daniel Dunbar | 2009-11-04 | 1 | -3/+8 | |
| | | | | | llvm-svn: 86014 | |||||
| * | Move logic for selection -fmessage-length= to driver. | Daniel Dunbar | 2009-11-04 | 1 | -1/+12 | |
| | | | | | llvm-svn: 86013 | |||||
| * | Fix indentation. | Daniel Dunbar | 2009-11-04 | 1 | -24/+24 | |
| | | | | | llvm-svn: 86011 | |||||
| * | Merge constant array and structures. This will create a global variables for ↵ | Tanya Lattner | 2009-11-04 | 1 | -0/+3 | |
| | | | | | | | arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. llvm-svn: 85991 | |||||
| * | Implement support for the -undef command line option, patch by | Chris Lattner | 2009-11-03 | 1 | -0/+2 | |
| | | | | | | | Roman Divacky! PR5363 llvm-svn: 85932 | |||||
| * | Fix -pthread on dragonfly. Patch by Sascha Wildner. | Mike Stump | 2009-10-31 | 1 | -1/+1 | |
| | | | | | llvm-svn: 85679 | |||||
| * | Change the driver to do the Darwin triple mangling itself instead of forwarding | Daniel Dunbar | 2009-10-30 | 1 | -6/+55 | |
| | | | | | | | -mmacosx-version-min and -miphoneos-version-min to clang-cc. llvm-svn: 85600 | |||||
| * | Remove some obsolete or unnecessary FIXMEs. | Daniel Dunbar | 2009-10-29 | 1 | -17/+4 | |
| | | | | | llvm-svn: 85475 | |||||
| * | PR5328: Allow duplicatic -pedantic (and -pedantic-errors) options. | Daniel Dunbar | 2009-10-29 | 1 | -1/+3 | |
| | | | | | | | - clang-cc doesn't care about their relative order with other -W options. llvm-svn: 85473 | |||||
| * | Kill off MakeFormattedString helper function. | Daniel Dunbar | 2009-10-29 | 1 | -14/+5 | |
| | | | | | llvm-svn: 85472 | |||||
| * | Reject -I- in driver instead of clang-cc. | Daniel Dunbar | 2009-10-29 | 1 | -0/+4 | |
| | | | | | llvm-svn: 85469 | |||||
| * | [llvm up] | Douglas Gregor | 2009-10-29 | 1 | -17/+13 | |
| | | | | | | | | Switch a few ugly switch-on-string-literal constructs to use the new llvm::StringSwitch. llvm-svn: 85461 | |||||
| * | Fix for PR4887, Credit to Jonathan Gray. | Edward O'Callaghan | 2009-10-28 | 1 | -1/+4 | |
| | | | | | llvm-svn: 85392 | |||||
| * | Rename -nostdclanginc to -nobuiltininc. | Rafael Espindola | 2009-10-26 | 1 | -1/+1 | |
| | | | | | llvm-svn: 85116 | |||||
| * | AuroraUX toolchain should call GNU assembler not the Solaris assembler. | Edward O'Callaghan | 2009-10-19 | 1 | -1/+1 | |
| | | | | | llvm-svn: 84469 | |||||
| * | dynamic linker arg is incorrectly invoking gnu ld arg syntax instead of svr4 ↵ | Edward O'Callaghan | 2009-10-16 | 1 | -1/+1 | |
| | | | | | | | ld syntax in AuroraUX toolchain. llvm-svn: 84266 | |||||
| * | fix -ansi in c++: it means -std=c++98 | Nuno Lopes | 2009-10-16 | 1 | -1/+4 | |
| | | | | | llvm-svn: 84254 | |||||
| * | Driver: Default to using PTH for C++ precompiled header support, PCH for C++ | Daniel Dunbar | 2009-10-15 | 1 | -5/+15 | |
| | | | | | | | | | isn't implemented yet. - <rdar://problem/7297571> Clang should use pretokenized headers for C++ PCH files llvm-svn: 84197 | |||||
| * | AuroraUX toolchain fixes. | Edward O'Callaghan | 2009-10-15 | 1 | -6/+10 | |
| | | | | | llvm-svn: 84176 | |||||
| * | -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 | |||||

