aboutsummaryrefslogtreecommitdiff
path: root/scripts/gcc_build.sh
blob: d70cb0e911b684bce794b082f500a1ddc6c5b230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

mkdir build
cd build || exit

../configure --target=i686-aleksa \
    --prefix=/usr \
    --with-sysroot=/opt/aleksa \
    --disable-nls \
    --disable-plugin \
    --enable-languages=c,c++

make