diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-08-28 20:17:39 -0700 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2020-08-31 22:11:23 +0200 |
commit | 879e68eafd76dea0b5c2d47e3968d0535dc467af (patch) | |
tree | 7e8d8f1602d9425121f217c5e40f0f92323ae2e5 /package/libs/libcxx/files | |
parent | 3f9bd9e8ee609b82a709fc62d42187211dd9804f (diff) | |
download | upstream-879e68eafd76dea0b5c2d47e3968d0535dc467af.tar.gz upstream-879e68eafd76dea0b5c2d47e3968d0535dc467af.tar.bz2 upstream-879e68eafd76dea0b5c2d47e3968d0535dc467af.zip |
libcxx: update to 10.0.0
Switched to upstream tarballs.
Switched to libcxxabi as using libsupc++ is quite wonky.
Fixed description.
Removed patches. The fixes are cosmetic.
Added ssp patch. This one is needed for i386 and powerpc under musl.
Compile tested every C++ package in the tree with the exception of
several boost packages. There's something broken with boost.
Ran tested with gerbera.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'package/libs/libcxx/files')
-rwxr-xr-x | package/libs/libcxx/files/g++-libcxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libs/libcxx/files/g++-libcxx b/package/libs/libcxx/files/g++-libcxx index 81ca46eb0e..88b3e7da01 100755 --- a/package/libs/libcxx/files/g++-libcxx +++ b/package/libs/libcxx/files/g++-libcxx @@ -13,7 +13,7 @@ do -static) [ "$WRAPPER_LIBS" != "-lc -lgcc_s -lssp_nonshared -lgcc_eh" ] && WRAPPER_LIBS="-lc -lgcc_s -lssp_nonshared -lgcc_eh" ;; esac done -[ "$WRAPPER_INCLIB" = "Y" ] && WRAPPER_OPTIONS="-nodefaultlibs $WRAPPER_LIBDIR -lc++ -lsupc++ $WRAPPER_LIBS" +[ "$WRAPPER_INCLIB" = "Y" ] && WRAPPER_OPTIONS="-nodefaultlibs $WRAPPER_LIBDIR -lc++ -lc++abi $WRAPPER_LIBS" -exec CXX -fno-builtin -nostdinc++ -DGCC_HASCLASSVISIBILITY "$WRAPPER_INCLUDEDIR" "$@" $WRAPPER_OPTIONS +exec CXX -nostdinc++ -DGCC_HASCLASSVISIBILITY "$WRAPPER_INCLUDEDIR" "$@" $WRAPPER_OPTIONS |