mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-08-04 02:06:31 -04:00

"scripts" is a more descriptive name than "tools", which sounds too similar to "programs".
10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
TOOLCHAIN_DIR=$HOME/src/ddwrt-toolchains/toolchain-mips_34kc_gcc-5.1.0_musl-1.1.9
|
|
|
|
make -j$(grep -c processor /proc/cpuinfo) all test_programs \
|
|
CC="$TOOLCHAIN_DIR/bin/mips-openwrt-linux-musl-gcc" \
|
|
CFLAGS="-DNEED_PRINTF -Werror"
|