1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

disable ssp/pie for emscripten

This commit is contained in:
Frank Denis 2017-10-22 01:55:28 +02:00
parent 88417977e3
commit a84d222d07

View File

@ -59,7 +59,9 @@ rm -f "$DONE_FILE"
echo echo
emconfigure ./configure $CONFIG_EXTRA --disable-shared --prefix="$PREFIX" \ emconfigure ./configure $CONFIG_EXTRA --disable-shared --prefix="$PREFIX" \
--without-pthreads CFLAGS="$CFLAGS" && \ --without-pthreads \
--disable-ssp --disable-asm --disable-pie \
CFLAGS="$CFLAGS" && \
emmake make clean emmake make clean
[ $? = 0 ] || exit 1 [ $? = 0 ] || exit 1