Age | Commit message (Collapse) | Author |
|
|
|
|
|
agladysh-ag/clang-add-version2
|
|
Previously, the import of try_delete was after one of the blocks
of code that called it, so it could result in an error at runtime.
|
|
This is for libcxx compilation on Windows and is a result of
http://llvm.org/PR15651.
See issue #1019 for more detail.
|
|
Just like LLVM_ADD_VERSION.
|
|
Another libcxx update
|
|
|
|
-nostdinc++ is needed to not pick up system C++ headers.
|
|
|
|
The comment here isn't quite accurate as at least current clang
requires that -nostdinc++ be passed for the correct behavior.
This was reported by Marcos Scriven.
|
|
|
|
a case where symbol removing made us not merge llvm constructors properly
|
|
This no longer uses headers from libcxxabi and
in fact uses libcxxabi a bit less than before.
This no longer lets some new C++11 stuff such as
exception_ptr work as the support for that relies
upon libcxxabi code.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
side, this can fix double precision bug in original strtod implementation.
|
|
Search libcxx includes before others (libc).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
be loaded without shared.py
|
|
|
|
|
|
on shared, which requires .emscripten at import time)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This ensures that the overrides like complex.h that libcxx provides
are found before the ones provided by libc.
Fixes #919.
|