Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Reorganize predefined macros for all Windows targets. | Michael J. Spencer | 2010-10-21 | 1 | -0/+4 | |
| | | | | | | | | | | This adds an option to set the _MSC_VER macro without recompiling. This is very useful when testing compatibility with the Windows SDK and c++stdlib headers. -fmsc-version=<version> (defaults to VS2003 (1300)) llvm-svn: 116999 | |||||
* | Fix a typo in the Clang man page, from Alexander Best. | Douglas Gregor | 2010-10-08 | 1 | -1/+1 | |
| | | | | llvm-svn: 116102 | |||||
* | Update Clang man page to say a little bit more about C++ | Douglas Gregor | 2010-09-24 | 1 | -3/+4 | |
| | | | | llvm-svn: 114735 | |||||
* | Driver/Objective-C: Retool Objective-C ABI flags to be more usable, and actually | Daniel Dunbar | 2010-09-20 | 1 | -1/+16 | |
| | | | | | | document behavior. Will wonders never cease. llvm-svn: 114334 | |||||
* | Driver: Add a -stdlib= argument which can be used to select the C++ standard | Daniel Dunbar | 2010-09-14 | 1 | -0/+6 | |
| | | | | | | | | | | | library to use. - This is currently useful for testing libc++; you can now use 'clang++ -stdlib=libc++ t.cpp' to compile using it if installed. - In the future could also be used to select other standard library choices if alternatives become available (for example, to use an alternate C library). llvm-svn: 113891 | |||||
* | Add support for Borland extensions via option -fborland-extensions | Dawn Perchik | 2010-09-02 | 1 | -0/+4 | |
| | | | | | | (original patch r112791 was reverted due to a bug). llvm-svn: 112915 | |||||
* | Reverting rev 112791 - apparently -fborland-extensions is on all the time?! | Dawn Perchik | 2010-09-02 | 1 | -4/+0 | |
| | | | | llvm-svn: 112797 | |||||
* | Add support for Borland extensions via option -fborland-extensions | Dawn Perchik | 2010-09-02 | 1 | -0/+4 | |
| | | | | llvm-svn: 112791 | |||||
* | Add machine-parseable Fix-It output as part of diagnostics, under the | Douglas Gregor | 2010-08-19 | 1 | -0/+1 | |
| | | | | | | flag -fdiagnostics-parseable-fixits, from Eelis van der Weegen! llvm-svn: 111557 | |||||
* | Remove a gratuitous lie. | Daniel Dunbar | 2010-08-17 | 1 | -1/+0 | |
| | | | | llvm-svn: 111253 | |||||
* | build: Get CLANG_VERSION from Version.inc instead of depending on VER file ↵ | Daniel Dunbar | 2010-06-25 | 1 | -1/+2 | |
| | | | | | | directly. llvm-svn: 106864 | |||||
* | Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. | Daniel Dunbar | 2010-06-08 | 1 | -2/+2 | |
| | | | | | | - This eliminates most dependencies on how Clang is installed relative to LLVM. llvm-svn: 105637 | |||||
* | docs: Man page tweaks, to mention the integrated assembler and the | Daniel Dunbar | 2010-05-21 | 1 | -6/+19 | |
| | | | | | | -integrated-as and -no-integrated-as options. llvm-svn: 104304 | |||||
* | Reverted r103214. | mike-m | 2010-05-07 | 1 | -0/+115 | |
| | | | | llvm-svn: 103222 | |||||
* | 2nd part of: Overhauled llvm/clang docs builds. | mike-m | 2010-05-06 | 1 | -115/+0 | |
| | | | | llvm-svn: 103214 | |||||
* | Use LLVM's new DESTDIR-less PROJ_* variables. | Erick Tryzelaar | 2010-03-04 | 1 | -3/+3 | |
| | | | | llvm-svn: 97744 | |||||
* | Document -nobuiltininc | Rafael Espindola | 2009-10-27 | 1 | -0/+4 | |
| | | | | llvm-svn: 85188 | |||||
* | Collapse more clang version numbers down into fewer places. | Mike Stump | 2009-09-16 | 1 | -1/+4 | |
| | | | | llvm-svn: 81983 | |||||
* | Back to 1.1 we go. | Mike Stump | 2009-09-15 | 1 | -1/+1 | |
| | | | | llvm-svn: 81944 | |||||
* | Some formatting tweaks to clang(1) | Daniel Dunbar | 2009-09-13 | 1 | -24/+24 | |
| | | | | llvm-svn: 81668 | |||||
* | Several fixes to the clang man page. | Daniel Dunbar | 2009-05-18 | 1 | -24/+21 | |
| | | | | | | | | | | | | | | - -emit-llvm isn't a stage selection option. - Document -O4 and -flto. - -ObjC++ and -ObjC apply to all inputs, not subsequent ones. - Some versions of pod2man aren't happy about the comment after =over=? - Some minor grammar fixes. llvm-svn: 72044 | |||||
* | wrap up a version of the man page that is minimally helpful, but somewhat ↵ | Chris Lattner | 2009-05-12 | 1 | -45/+31 | |
| | | | | | | complete. llvm-svn: 71524 | |||||
* | add some more content. | Chris Lattner | 2009-05-12 | 1 | -80/+182 | |
| | | | | llvm-svn: 71518 | |||||
* | pull a bunch of options out of clang-cc.cpp. This doesn't include | Chris Lattner | 2009-05-11 | 2 | -18/+142 | |
| | | | | | | options that the driver swizzles. llvm-svn: 71487 | |||||
* | Document environment variables we handle, and don't mention -pipe (it | Daniel Dunbar | 2009-05-06 | 1 | -8/+30 | |
| | | | | | | isn't yet supported... lazy developers). llvm-svn: 71109 | |||||
* | More content. | Chris Lattner | 2009-05-06 | 1 | -23/+82 | |
| | | | | llvm-svn: 71088 | |||||
* | add some content | Chris Lattner | 2009-05-06 | 1 | -24/+97 | |
| | | | | llvm-svn: 71059 | |||||
* | Override some pod2man defaults. | Daniel Dunbar | 2009-05-06 | 1 | -1/+1 | |
| | | | | llvm-svn: 71045 | |||||
* | Make install target actually work, dependencies FTW. | Daniel Dunbar | 2009-05-01 | 1 | -3/+3 | |
| | | | | llvm-svn: 70599 | |||||
* | Add ONLY_MAN_DOCS variable to only install the man page, not the html | Daniel Dunbar | 2009-05-01 | 1 | -1/+13 | |
| | | | | | | and ps documentation. llvm-svn: 70589 | |||||
* | Add incredibly bare bones docs/tools. | Daniel Dunbar | 2009-04-29 | 3 | -0/+507 | |
- Mirroring LLVM's docs/CommandGuide, a place to put .pod files which are used to generate man/html/etc documentation for tools provided as part of clang. llvm-svn: 70355 |