mirror of
https://git.themanaworld.org/mana/verse
synced 2026-08-16 04:23:07 -04:00
A grep for make1 / make2 / fink reveals that no script uses these. Perhaps something externally was processing them? In any case, some commented-out cases were left in for future grepping. And, along with windows builder, the rest are fixed as well, as this took me some time to figure out and I don't want it to take time, again. **** mana/verse!263
10 lines
292 B
Bash
Executable file
10 lines
292 B
Bash
Executable file
#!/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 -Wno-attributes"
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake .
|
|
|
|
make -j16 VERBOSE=1
|
|
|