8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
cd `dirname $0`/..
|
|
|
|
mkdir -p build_hardfp
|
|
cd build_hardfp
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=../arm-gnueabi.toolchain.cmake $@ ../../..
|