Skip to content

Commit

Permalink
First cut at a post c++14 status page
Browse files Browse the repository at this point in the history
llvm-svn: 210056
  • Loading branch information
mclow committed Jun 2, 2014
1 parent da24e9c commit f39d914
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libcxx/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ <h2 id="dir-structure">Current Status</h2>
<p>LLVM and Clang can self host in C++ and C++11 mode with libc++ on Linux.</p>
<p>libc++ is also a 100% complete C++14 implementation. A list of new features and changes for
C++14 can be found <a href="cxx1y_status.html">here</a>.</p>
<p>Implementation of the post-c++14 Technical Specifications is in progress. A list of features and
the current status of these features can be found <a href="ts1z_status.html">here</a>.</p>
<p>
Ports to other platforms are underway. Here are recent test
results for <a href="results.Windows.html">Windows</a>
Expand Down
89 changes: 89 additions & 0 deletions libcxx/www/ts1z_status.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>libc++ C++1Y Status</title>
<link type="text/css" rel="stylesheet" href="menu.css">
<link type="text/css" rel="stylesheet" href="content.css">
</head>

<body>
<div id="menu">
<div>
<a href="http://llvm.org/">LLVM Home</a>
</div>

<div class="submenu">
<label>libc++ Info</label>
<a href="/index.html">About</a>
</div>

<div class="submenu">
<label>Quick Links</label>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev</a>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits</a>
<a href="http://llvm.org/bugs/">Bug Reports</a>
<a href="http://llvm.org/svn/llvm-project/libcxx/trunk/">Browse SVN</a>
<a href="http://llvm.org/viewvc/llvm-project/libcxx/trunk/">Browse ViewVC</a>
</div>
</div>

<div id="content">
<!--*********************************************************************-->
<h1>Post-C++14 TS Implementation Status</h1>
<!--*********************************************************************-->

<p>In April 2013, the C++ standard committee approved the draft for the next version of the C++ standard, known as "C++1Y" (probably to be C++14)</p>
<p>The draft standard includes papers and issues that were voted on at the previous three meetings (Kona, Portland, and Bristol)</p>
<p>This page shows the status of libc++; the status of clang's support of the language features is <a href="http://clang.llvm.org/cxx_status.html">here</a>.</p>

<h3>Technical Specifications</h3>
<table id="TS" border="1">
<tr><th>Paper Number</th><th>TS Title</th></tr>

<tr><td>4023</td><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4023.html">C++ Extensions for Library Fundamentals</a></td></tr>
<tr><td>3940</td><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3940.html">Technical Specification - File System</a></td></tr>
<tr><td></td><td></td></tr>
</table>

<h3>Features in Library Fundamentals</h3>
<table id="Features" border="1">
<tr><th>Feature Name</th><th>Status</th></tr>
<tr><td>Uses-allocator construction</td><td>Not started</td></tr>
<tr><td>Changes to std::shared_ptr and weak_ptr</td><td>Not started</td></tr>
<tr><td>Additions to std::function</td><td>Not started</td></tr>
<tr><td>Changes to std::common_type</td><td>Not started</td></tr>
<tr><td>Changes to std::iterator_traits</td><td>Not started</td></tr>
<tr><td>Additions to std::promise</td><td>Not started</td></tr>
<tr><td>Additions to std::packaged_task</td><td>Not started</td></tr>
<tr><td></td><td></td></tr>
<tr><td>Class erased_type</td><td>Not started</td></tr>
<tr><td>Calling a function with a tuple of arguments</td><td>Not started</td></tr>
<tr><td>Other type transformations</td><td>Not started</td></tr>
<tr><td>Compile-time Rational Arithmetic</td><td>Not started</td></tr>
<tr><td>Time Utilities</td><td>Not started</td></tr>
<tr><td>System Error Support</td><td>Not started</td></tr>
<tr><td></td><td></td></tr>
<tr><td>Searchers</td><td>Not started</td></tr>
<tr><td>Optional Objects</td><td>Initial implementation complete</td></tr>
<tr><td>class any</td><td>Not started</td></tr>
<tr><td>string_view</td><td>Implementation in progress</td></tr>
<tr><td>memory</td><td>Not started</td></tr>
<tr><td>Algorithms library</td><td>Not started</td></tr>
<tr><td>Networking</td><td>Not started</td></tr>

</table>

<h3>Features in Filesystem</h3>
<table id="Features" border="1">
<tr><th>Feature Name</th><th>Status</th></tr>
<tr><td>All features</td><td>Not started</td></tr>

</table>

<p>Last Updated: 2-June-2014</p>
</div>
</body>
</html>

0 comments on commit f39d914

Please sign in to comment.