mirror of
https://github.com/raspberrypi/userland.git
synced 2025-12-06 04:49:12 +00:00
8 lines
217 B
Plaintext
Executable File
8 lines
217 B
Plaintext
Executable File
#/bin/sh
|
|
mkdir -p build/arm-linux/release/
|
|
pushd build/arm-linux/release/
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../../../makefiles/cmake/toolchains/arm-linux-gnueabihf.cmake -DCMAKE_BUILD_TYPE=Release ../../..
|
|
make -j 6
|
|
popd
|
|
|