Displaying 3 results from an estimated 3 matches for "opitimz".
Did you mean:
ipitimi
2010 May 12
0
[LLVMdev] [cfe-dev] New libc++ LLVM Subproject
...compile time run time
---------------- ----------------
libstdc++ libc++ libstdc++ libc++
g++-4.2 -O3 0.62 0.96 23 5
clang++ -O3 0.66 0.80 21 5
Since compile times are usually more important with non-opitimzed builds I computed the same table at -O0:
compile time run time
---------------- ----------------
libstdc++ libc++ libstdc++ libc++
g++-4.2 -O0 0.48 .76 186 5
clang++ -O0 0.46 .70 261 5
-Howard
2010 May 12
2
[LLVMdev] [cfe-dev] New libc++ LLVM Subproject
On Tue, May 11, 2010 at 5:40 PM, Andrew Sutton <andrew.n.sutton at gmail.com>wrote:
> > What's driving libc++?
>>
>> The possibility of being a superior solution.
>>
>
> I thought "to support Apple applications" from the previous post was
> sufficient motivation :) Either way, I'm excited about a new library. Plus,
> it looks a little
2010 May 11
9
[LLVMdev] New libc++ LLVM Subproject
Hi All,
LLVM now includes a C++ standard library, written by Howard Hinnant. You can read about it here:
http://blog.llvm.org/2010/05/new-libc-c-standard-library.html
Or get the code here:
svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx
If you have questions or comments, please direct them to one of the clang mailing lists. Thanks!
-Chris