Browse Source

Work around c++ headers path on i686

android-5
Fredrik Fornwall 9 years ago
parent
commit
0425eb1e13
  1. BIN
      packages/ndk-stl/.build.sh.swp
  2. 3
      packages/ndk-stl/build.sh

BIN
packages/ndk-stl/.build.sh.swp

Binary file not shown.

3
packages/ndk-stl/build.sh

@ -15,6 +15,9 @@ termux_step_extract_into_massagedir () {
if [ $TERMUX_ARCH = arm ]; then if [ $TERMUX_ARCH = arm ]; then
cp $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/arm-linux-androideabi/armv7-a/bits/* \ cp $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/arm-linux-androideabi/armv7-a/bits/* \
$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/bits $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/bits
elif [ $TERMUX_ARCH = i686 ]; then
cp $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/i686-linux-android/bits/* \
$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/bits
fi fi
# fenv.h is a C++ compatibility header which should be included with the compiler # fenv.h is a C++ compatibility header which should be included with the compiler
rm -Rf $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/{arm-linux-androideabi,tr1,tr2,fenv.h,complex.h} rm -Rf $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/{arm-linux-androideabi,tr1,tr2,fenv.h,complex.h}

Loading…
Cancel
Save