Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update more file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| | | | | | | | | | | | | | | | | | | to reflect the new license. These used slightly different spellings that defeated my regular expressions. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351648 | ||||
* | Fix demangle helper after r286788 | Eric Fiselier | 2017-01-20 | 1 | -3/+1 |
| | | | | llvm-svn: 292541 | ||||
* | Fix demangle.h on Windows | Eric Fiselier | 2017-01-14 | 1 | -1/+1 |
| | | | | llvm-svn: 292028 | ||||
* | Put C++ ABI headers in a special build directory instead of the top level. | Eric Fiselier | 2016-12-09 | 1 | -0/+49 |
This patch changes where the C++ ABI headers are put during the build. Previously they were put in the top level include directory (not the libc++ header directory). However that just polutes the top level directory. Instead this patch creates a special directory to put them in. The reason they can't be put under c++/v1 until after the build is because libc++ uses the in-source headers, so we can't add the include path of the libc++ headers in the object dir. Additionally this patch teaches the test suite how to find the ABI headers, and adds a demangling utility to help debug tests with. llvm-svn: 289195 |