Disable parallel WebAssembly build.

GitOrigin-RevId: b8ab28cdfb356b8417d3f08edb87316ba7abbbbd
This commit is contained in:
levlam 2018-12-28 20:23:26 +03:00
parent 198f0997c1
commit 385e87d92c

View File

@ -37,8 +37,8 @@ eval emconfigure cmake -DCMAKE_BUILD_TYPE=Release $OPENSSL_OPTIONS -DASMJS=1 $TD
cd ../..
echo "Generating TDLib autogenerated source files..."
cmake --build build/generate -j --target prepare_cross_compiling || exit 1
cmake --build build/generate --target prepare_cross_compiling || exit 1
echo "Building TDLib to WebAssembly..."
cmake --build build/wasm -j --target td_wasm || exit 1
cmake --build build/wasm --target td_wasm || exit 1
echo "Building TDLib to asm.js..."
cmake --build build/asmjs -j --target td_asmjs || exit 1
cmake --build build/asmjs --target td_asmjs || exit 1