
We've been running each Make command in a single thread, resulting in fairly slow builds for C++ codecs. This change instead runs all `make` invocations with `-j` defaulting to number of cores (retrieved via `nproc`). On my machine Docker uses a VM configured to 4 cores out of 8 available. This change brings total build time for C++ codecs down from 10m28s to 7m5s (~3.5 minutes difference). Note (1): I've converted imagequant builds to use built-in `make` as well to leverage this parallelisation and future-proof build script. Note (2): we don't need to do the same for Rust, since Cargo parallelises builds by default.
63 lines
1.5 KiB
Bash
Executable File
63 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export OPTIMIZE="-Os"
|
|
export LDFLAGS="${OPTIMIZE}"
|
|
export CFLAGS="${OPTIMIZE}"
|
|
export CPPFLAGS="${OPTIMIZE}"
|
|
|
|
apt-get update
|
|
apt-get install -qqy autoconf libtool libpng-dev pkg-config
|
|
|
|
echo "============================================="
|
|
echo "Compiling libwebp"
|
|
echo "============================================="
|
|
test -n "$SKIP_LIBWEBP" || (
|
|
cd node_modules/libwebp
|
|
autoreconf -fiv
|
|
rm -rf build || true
|
|
mkdir -p build && cd build
|
|
emconfigure ../configure \
|
|
--disable-libwebpdemux \
|
|
--disable-wic \
|
|
--disable-gif \
|
|
--disable-tiff \
|
|
--disable-jpeg \
|
|
--disable-png \
|
|
--disable-sdl \
|
|
--disable-gl \
|
|
--disable-threading \
|
|
--disable-neon-rtcd \
|
|
--disable-neon \
|
|
--disable-sse2 \
|
|
--disable-sse4.1
|
|
emmake make -j`nproc`
|
|
)
|
|
echo "============================================="
|
|
echo "Compiling wasm bindings"
|
|
echo "============================================="
|
|
(
|
|
emcc \
|
|
${OPTIMIZE} \
|
|
--closure 1 \
|
|
--bind \
|
|
-s ALLOW_MEMORY_GROWTH=1 \
|
|
-s MODULARIZE=1 \
|
|
-s 'EXPORT_NAME="webp_enc"' \
|
|
--std=c++11 \
|
|
-I node_modules/libwebp \
|
|
-o ./webp_enc.js \
|
|
-x c++ \
|
|
webp_enc.cpp \
|
|
node_modules/libwebp/build/src/.libs/libwebp.a
|
|
)
|
|
echo "============================================="
|
|
echo "Compiling wasm bindings done"
|
|
echo "============================================="
|
|
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|
|
echo "Did you update your docker image?"
|
|
echo "Run \`docker pull trzeci/emscripten-upstream\`"
|
|
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
|