- Show debug information in sdb format - Fix null pointer segfault - Still work-in-progress for proper debug info * Some work on r_egg - Fix windows and osx default syscall tables * Export version number in vapi R2_VERSION * Hide ccache error if not found in sys/install
26 lines
364 B
Bash
Executable file
26 lines
364 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
|
|
# update
|
|
if [ -d .hg ]; then
|
|
hg pull -u
|
|
elif [ -d .git ]; then
|
|
git pull
|
|
fi
|
|
|
|
ccache --help > /dev/null 2>&1
|
|
if [ $? = 0 ]; then
|
|
[ -z "${CC}" ] && CC=gcc
|
|
CC="ccache ${CC}"
|
|
export CC
|
|
fi
|
|
|
|
# build
|
|
if [ -f config-user.mk ]; then
|
|
make mrproper
|
|
fi
|
|
./configure --prefix=/usr && \
|
|
make -j 4 && \
|
|
sudo make symstall
|