X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/3f300a10fc7d4d34642f80368bb02f2898f7fb8a..8a478d7e1ad5cec030ae8a69a8730ec38389bb5c:/packages/libgnustl/build.sh diff --git a/packages/libgnustl/build.sh b/packages/libgnustl/build.sh index 41c4b15e..64e5de8e 100644 --- a/packages/libgnustl/build.sh +++ b/packages/libgnustl/build.sh @@ -1,7 +1,7 @@ TERMUX_PKG_HOMEPAGE=http://gcc.gnu.org/onlinedocs/libstdc++/ TERMUX_PKG_DESCRIPTION="The GNU Standard C++ Library (a.k.a. libstdc++-v3), necessary on android since the system libstdc++.so is stripped down" TERMUX_PKG_VERSION=$TERMUX_NDK_VERSION -TERMUX_PKG_BUILD_REVISION=4 +TERMUX_PKG_REVISION=1 # Since every C++ package links against this by default (due # to the libstdc++.so -> libgnustl_shared.so setup in # build-package.sh) this package is considered essential, @@ -9,7 +9,11 @@ TERMUX_PKG_BUILD_REVISION=4 # dependency on it. TERMUX_PKG_ESSENTIAL=yes -termux_step_make_install () { - # Just bump timestamp to have it packaged. - touch $TERMUX_PREFIX/lib/libgnustl_shared.so +termux_step_post_massage () { + # We take the library here after massage step to + # avoid stripping the library after running termux-elf-cleaner, + # which causes a broken library (program compiled on the + # device linking to the library will segfault, at least on aarch64). + mkdir lib + cp $TERMUX_PREFIX/lib/libgnustl_shared.so lib/ }