[PATCH] D13445: [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X.

2015-10-05 Thread Eric Fiselier via cfe-commits
EricWF created this revision. EricWF added a reviewer: mclow.lists. EricWF added a subscriber: cfe-commits. On OS X libc++ needs to reexport libc++abi's symbols in order for them to be provided. We explicitly list the symbols to reexport it libcxx/lib/libc++abi2.exp. This patch adds the symbols

Re: [PATCH] D13445: [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X.

2015-10-05 Thread Adrian Prantl via cfe-commits
aprantl accepted this revision. aprantl added a reviewer: aprantl. aprantl added a comment. This revision is now accepted and ready to land. Grepping through the nm output of libc++abi it looks like bad_array_length is included in Xcode 7 and Xcode 6.4, which is also what is installed on the

Re: [PATCH] D13445: [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X.

2015-10-05 Thread Eric Fiselier via cfe-commits
EricWF updated this revision to Diff 36540. EricWF added a comment. I moved the symbols into `lib/libc++abi2.exp` since we didn't anticipate the need to exclude them. http://reviews.llvm.org/D13445 Files: lib/CMakeLists.txt lib/libc++abi2.exp Index: lib/libc++abi2.exp

Re: [PATCH] D13445: [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X.

2015-10-05 Thread Eric Fiselier via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL249339: [libcxx] Reexport std::bad_array_length symbols from libc++abi on OS X. (authored by EricWF). Changed prior to commit: http://reviews.llvm.org/D13445?vs=36540=36541#toc Repository: rL LLVM