summaryrefslogtreecommitdiffstats
path: root/clang/test/Driver/cl.c
Commit message (Collapse)AuthorAgeFilesLines
* Erase REQUIRES: shell-preserves-root from more tests, see r242312.Yaron Keren2015-07-151-3/+0
| | | | llvm-svn: 242321
* Remove the -cxx-abi command-line flag.Hans Wennborg2014-01-141-1/+0
| | | | | | | | | | | | | | | This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples, Itanium otherwise. It's no longer possible to do weird combinations. To be able to run a test with a specific ABI without constraining it to a specific triple, new substitutions are added to lit: %itanium_abi_triple and %ms_abi_triple can be used to get the current target triple adjusted to the desired ABI. For example, if the test suite is running with the i686-pc-win32 target, %itanium_abi_triple will expand to i686-pc-mingw32. Differential Revision: http://llvm-reviews.chandlerc.com/D2545 llvm-svn: 199250
* clang-cl: use -fdiagnostics-format=msvc by defaultHans Wennborg2013-09-101-2/+3
| | | | | | | This allows for navigating to errors within the MSVC IDE by clicking on the diagnostics. llvm-svn: 190378
* clang-cl: use MS C++ ABIHans Wennborg2013-08-081-0/+6
| | | | | | Differential Revision: http://llvm-reviews.chandlerc.com/D1329 llvm-svn: 188000
* test/Driver/cl.c, remove quotes around /helpHans Wennborg2013-07-291-10/+11
| | | | | | | | | The quotes (from r187330) didn't really help here, the trick was to disable the test on MSYS builds. This removes those quotes, changes back the comment to explain why /? has to be quoted specifically, and moves the REQUIRES line to the top of the file because that's important. llvm-svn: 187366
* clang/test/Driver/cl.c: Don't attempt slash switches on msys bash.NAKAMURA Takumi2013-07-291-0/+3
| | | | llvm-svn: 187337
* Try single quotes to fix the msys bot:Rafael Espindola2013-07-281-8/+7
| | | | | | | | It was still failing with double quotes: http://bb.pgr.jp/builders/clang-i686-msys/builds/698/steps/test_clang/logs/Clang%20%3A%3A%20Driver__cl.c llvm-svn: 187330
* Fix test/Driver/cl.c.Hans Wennborg2013-07-271-3/+7
| | | | | | | | | This test would fail in weird ways on systems with a one-letter filename in the root directory, because the shell would helpfully expand /? to e.g. /n. Make sure this doesn't happen by adding quotes. llvm-svn: 187295
* clang-cl: add support for the /? and /help optionsHans Wennborg2013-07-271-2/+20
| | | | | | | | | | | | | | This establishes a new Flag in Options.td, which can be assigned to options that should be made available in clang's cl.exe compatible mode, and updates the Driver to make use of the flag. (The whitespace change to CMakeLists forces the build to re-run CMake and pick up the include dependency on the new .td file. This makes the build work if someone moves backwards in commit history after this change.) Differential Revision: http://llvm-reviews.chandlerc.com/D1215 llvm-svn: 187280
* Add a cl.exe compatible driver modeHans Wennborg2013-07-191-0/+3
The mode doesn't actually do anything yet, but this provides a way to get into it. llvm-svn: 186720
OpenPOWER on IntegriCloud