2015-05-20 17:39:54 +00:00
|
|
|
This is meant to be a general place to list things that should be done "someday"
|
|
|
|
|
2015-08-24 19:33:40 +00:00
|
|
|
|
2015-05-22 02:23:22 +00:00
|
|
|
ABI Related Tasks
|
|
|
|
=================
|
|
|
|
* Explicitly manage and verify symbols exported from the dylib.
|
|
|
|
|
|
|
|
CXX Runtime Library Tasks
|
|
|
|
=========================
|
|
|
|
* Fix that CMake always link to /usr/lib/libc++abi.dylib on OS X.
|
|
|
|
* Look into mirroring libsupc++'s typeinfo vtable layout when libsupc++/libstdc++
|
|
|
|
is used as the runtime library.
|
|
|
|
* Investigate and document interoperability between libc++ and libstdc++ on
|
|
|
|
linux. Do this for every supported c++ runtime library.
|
|
|
|
|
|
|
|
Atomic Related Tasks
|
|
|
|
====================
|
2015-05-20 17:39:54 +00:00
|
|
|
* future should use <atomic> for synchronization.
|
2015-05-22 02:23:22 +00:00
|
|
|
|
|
|
|
Test Suite Tasks
|
|
|
|
================
|
|
|
|
* Move all libc++ specific tests from test/std into test/libcxx.
|
|
|
|
* Improve the quality and portability of the locale test data.
|
2015-09-04 22:57:00 +00:00
|
|
|
* Convert failure tests to use Clang Verify.
|
2015-05-22 02:23:22 +00:00
|
|
|
|
|
|
|
Misc Tasks
|
|
|
|
==========
|
|
|
|
* Find all sequences of >2 underscores and eradicate them.
|
|
|
|
* run clang-tidy on libc++
|
2015-05-20 17:39:54 +00:00
|
|
|
* Document the "conditionally-supported" bits of libc++
|
|
|
|
* Look at basic_string's move assignment operator, re LWG 2063 and POCMA
|
|
|
|
* libc++ is missing try_emplace
|
|
|
|
* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447)
|
2016-09-27 01:28:47 +00:00
|
|
|
|