blob: 9a1b61a93af27703d9deefbe21667d69dea57b83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
cd ..
export PATH=/home/mingw/cross/i686-w64-mingw32/bin:/home/mingw/cross/bin:$PATH
export CXXFLAGS="-Wall -g1 -O2 -ffast-math -std=gnu++0x -funswitch-loops -funsafe-loop-optimizations"
cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake . 2>build/make1.log
make -j8 VERBOSE=1 2>>build/make.log
|