blob: 406e524100c7a86e0b1b60b61ad963146e890844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
SDIR=`dirname $0`
CDIR=$SDIR/../cmake
PATH=$SDIR/arm-linux-gnueabihf/bin:$PATH
export PATH
cmake .. -DCMAKE_TOOLCHAIN_FILE=$CDIR/toolchain.gcc-armv6hf.cmake
make
|