blob: e016e03900533ed034fb17eadea09cee537bed86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash
mkdir tmp
cd ..
dir=`pwd`
export CCACHE_DIR="${dir}/build/ccache/pmake"
export CC="ccache gcc"
export CXX="ccache g++"
export LANG=C
export CXXFLAGS="-g -pg -fno-inline -fno-omit-frame-pointer"
autoreconf -i
cd build/tmp
../../configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man
cd po
make -j8 update-gmo 2>../../make1.log
cd ..
make -j8 2>../make2.log
|