blob: 55395cb73c7ae664089f6acfe854bd72d0724c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
echo Quick script to make building all the time less painful.
# Set the paths up here to support the build.
export PATH=/tools/open2x_gcc/gcc-4.0.2-glibc-2.3.5/arm-open2x-linux/arm-open2x-linux/bin:$PATH
export PATH=/tools/open2x_gcc/gcc-4.0.2-glibc-2.3.5/arm-open2x-linux/bin:$PATH
export CXX=arm-open2x-linux-g++
export CC=arm-open2x-linux-gcc
export CXXFLAGS=-march=armv4t
export LDFLAGS=-static
cd ../../../..
echo Building ScummVM for GP2X.
make
echo Build for GP2X - SDL - complete - Please check build logs.
|