c6f429ab17
Shrinks rslib.so from about 40MB to about 26MB, at the cost of considerably higher build time in a release build.
15 lines
226 B
Bash
Executable File
15 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PATH="$PATH:/state/rust/cargo/bin"
|
|
export BUILD_ROOT=/state/build
|
|
export RELEASE=2
|
|
ln -sf out/node_modules .
|
|
|
|
if [ $(uname -m) = "aarch64" ]; then
|
|
./ninja wheels:anki
|
|
else
|
|
./ninja bundle
|
|
fi
|