mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-13 06:20:02 -04:00
38 lines
No EOL
1.1 KiB
Bash
Executable file
38 lines
No EOL
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#compile openssl for use with emscripten
|
|
|
|
set -x
|
|
set -e
|
|
|
|
CORE_COUNT=$(nproc --all)
|
|
PREFIX=$(realpath build/curl-wasm)
|
|
MBEDTLS_PREFIX=$(realpath build/mbedtls-wasm)
|
|
ZLIB_PREFIX=$(realpath build/zlib-wasm)
|
|
BROTLI_PREFIX=$(realpath build/brotli-wasm)
|
|
NGHTTP2_PREFIX=$(realpath build/nghttp2-wasm)
|
|
|
|
cd build
|
|
rm -rf curl
|
|
git clone -b curl-8_12_0 --depth=1 https://github.com/curl/curl
|
|
cd curl
|
|
|
|
autoreconf -fi
|
|
emconfigure ./configure --host i686-linux \
|
|
--disable-shared --disable-threaded-resolver --without-libpsl \
|
|
--disable-netrc --disable-ipv6 --disable-tftp --disable-ntlm-wb \
|
|
--enable-websockets --disable-ftp --disable-file --disable-gopher \
|
|
--disable-imap --disable-mqtt --disable-pop3 --disable-rtsp \
|
|
--disable-smb --disable-smtp --disable-telnet --disable-dict \
|
|
--with-mbedtls=$MBEDTLS_PREFIX --with-zlib=$ZLIB_PREFIX \
|
|
--with-brotli=$BROTLI_PREFIX --with-nghttp2=$NGHTTP2_PREFIX
|
|
|
|
emmake make -j$CORE_COUNT CFLAGS="-O3" LIBS="-lbrotlicommon"
|
|
|
|
rm -rf $PREFIX
|
|
mkdir -p $PREFIX/include
|
|
mkdir -p $PREFIX/lib
|
|
cp -r include/curl $PREFIX/include
|
|
cp lib/.libs/libcurl.a $PREFIX/lib
|
|
|
|
cd ../../ |