Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [libc++][CMake] Clean up some of the libc++ re-exporting logic | Louis Dionne | 2019-03-20 | 1 | -160/+0 |
| | | | | | | | | | | | | | | | | | | | | | | Summary: This change allows specifying the version of libc++abi's ABI to re-export when configuring CMake. It also clearly identifies which ABI version of libc++abi each export file contains. Finally, it removes hardcoded knowledge about the 10.9 SDK for MacOS, since that knowledge is not relevant anymore. Indeed, libc++ can't be built with the toolchain that came with the 10.9 SDK anyway because the version of Clang it includes is too old (for example if you want to build a working libc++.dylib, you need bugfixes to visibility attributes that are only in recent Clangs). Reviewers: dexonsmith, EricWF Subscribers: mgorny, christof, jkorous, arphaman, libcxx-commits Differential Revision: https://reviews.llvm.org/D59489 llvm-svn: 356587 | ||||
* | ABI: Fix for undefined "___cxa_deleted_virtual" symbol in MacOSX | Eric Fiselier | 2017-09-17 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | Patch from Eddie Elizondo. Reviewed as D37830 (https://reviews.llvm.org/D37830). On MacOSX the following program: struct S { virtual void f() = delete; }; int main() { new S; } Fails with the following error: Undefined symbols for architecture x86_64: "___cxa_deleted_virtual" This adds a fix to export the needed symbols. Test: > lit -sv test/libcxx/language.support/cxa_deleted_virtual.pass.cpp > Testing Time: 0.21s > Expected Passes : 1 llvm-svn: 313500 | ||||
* | on Darwin re-export C++0x type infos | Nick Kledzik | 2011-05-24 | 1 | -9/+9 |
| | | | | llvm-svn: 131995 | ||||
* | add support for setjmp/longjmp based exceptions | Nick Kledzik | 2011-05-05 | 1 | -0/+159 |
llvm-svn: 130938 |