- Apr 30, 2009
-
-
Douglas Gregor authored
llvm-svn: 70424
-
- Apr 29, 2009
-
-
Daniel Dunbar authored
compiler. - Code generation options may still affect the language... llvm-svn: 70393
-
Douglas Gregor authored
llvm-svn: 70339
-
- Apr 28, 2009
-
-
Daniel Dunbar authored
regardless of extension. - Otherwise we can't expect that just plugging in -ccc-pch-is-pch will work. llvm-svn: 70318
-
Douglas Gregor authored
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
-
- Apr 27, 2009
-
-
Douglas Gregor authored
llvm-svn: 70168
-
Douglas Gregor authored
llvm-svn: 70164
-
- Apr 26, 2009
-
-
Douglas Gregor authored
llvm-svn: 70113
-
Douglas Gregor authored
llvm-svn: 70112
-
Douglas Gregor authored
llvm-svn: 70106
-
Daniel Dunbar authored
- 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
-
Daniel Dunbar authored
should be joined or separate. llvm-svn: 70101
-
Douglas Gregor authored
Another shot at switching PCH on by default, now that we've cleaned up some bugs and improved performance. Will be reverted after Mr. Speedy gets done with it llvm-svn: 70099
-
- Apr 25, 2009
-
-
Douglas Gregor authored
llvm-svn: 70018
-
Douglas Gregor authored
we see what trouble it causes. llvm-svn: 70017
-
Daniel Dunbar authored
don't yet understand where this is happening in llvm-gcc). llvm-svn: 70012
-
Daniel Dunbar authored
llvm-svn: 70010
-
- Apr 24, 2009
-
-
Daniel Dunbar authored
- 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
-
Daniel Dunbar authored
- <rdar://problem/6517382> [driver] call ld directly llvm-svn: 69938
-
- Apr 21, 2009
-
-
Chris Lattner authored
Temporarily accept both of them, I'll rip out the old one after awhile. llvm-svn: 69662
-
Daniel Dunbar authored
llvm-svn: 69638
-
- Apr 20, 2009
-
-
Daniel Dunbar authored
files. llvm-svn: 69622
-
Daniel Dunbar authored
llvm-svn: 69609
-
- Apr 19, 2009
-
-
Daniel Dunbar authored
llvm-svn: 69549
-
Daniel Dunbar authored
llvm-svn: 69546
-
- Apr 18, 2009
-
-
Douglas Gregor authored
llvm-svn: 69410
-
- Apr 17, 2009
-
-
Fariborz Jahanian authored
yet. llvm-svn: 69346
-
Daniel Dunbar authored
unsupported arch. llvm-svn: 69322
-
- Apr 16, 2009
-
-
Daniel Dunbar authored
- <rdar://problem/6796848> implement -fdiagnostics-show-option llvm-svn: 69276
-
Daniel Dunbar authored
Remove clang_W_Group and clang_ignored_W_Group. llvm-svn: 69261
-
- Apr 15, 2009
-
-
Daniel Dunbar authored
llvm-svn: 69171
-
Daniel Dunbar authored
-funsigned-bitfields for now (clang defaults to -fsigned-bitfields). - <rdar://problem/6790309> ER: Support -fsigned-bitfields/-funsigned-bitfields llvm-svn: 69131
-
- Apr 12, 2009
-
-
Chris Lattner authored
macro definitions. llvm-svn: 68884
-
- Apr 10, 2009
-
-
Daniel Dunbar authored
llvm-svn: 68822
-
Daniel Dunbar authored
llvm-svn: 68816
-
Daniel Dunbar authored
llvm-svn: 68805
-
- Apr 09, 2009
-
-
Daniel Dunbar authored
up adding them twice when running with -no-integrated-cpp or -save-temps. - <rdar://problem/6766636> -save-temps falls over with prefix headers llvm-svn: 68660
-
- Apr 08, 2009
-
-
Daniel Dunbar authored
- Add -static-define option driver can use when __STATIC__ should be defined (instead of __DYNAMIC__). - Don't set __OPTIMIZE_SIZE__ on Os, __OPTIMIZE_SIZE__ is tied to Oz. - Set __NO_INLINE__ following GCC 4.2. - Set __GNU_GNU_INLINE__ or __GNU_STDC_INLINE__ following GCC 4.2. - Set __EXCEPTIONS for Objective-C NonFragile ABI. - Set __STRICT_ANSI__ for standard conforming modes. - I added a clang style test case in utils for this, but its not particularly portable and I don't think it belongs in the test suite. llvm-svn: 68621
-
Daniel Dunbar authored
g++. llvm-svn: 68601
-
Daniel Dunbar authored
- This is pretty ugly, but the most obvious solution. Chime in if you have a nicer one. - The problem is that with -save-temps, clang-cc has no idea what the name of the original input file is. However, the user expects to be able to set breakpoints based on the input file name. - We support this by providing a new option -main-file-name (similar to -dumpbase used by gcc) which allows the driver to pass in the original file name. - <rdar://problem/6753383> building with clang using --save-temps gets the compile unit name from the .i file... llvm-svn: 68595
-