build-arm-linux-gnueabihf.sh 222 B

12345678910
  1. #!/usr/bin/env bash
  2. set -x
  3. dir=build-arm-linux-gnueabihf
  4. mkdir -p $dir
  5. cd $dir
  6. cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=../toolchains/arm-linux-gnueabihf.toolchain.cmake ..
  7. make VERBOSE=1 -j4
  8. make install