update script
This commit is contained in:
parent
e4d336665f
commit
0e0bd1de9b
|
@ -1,24 +1,15 @@
|
||||||
display_usage() {
|
display_usage() {
|
||||||
echo "Usage: [install] [build]"
|
echo "Usage: [install] [build] [export]"
|
||||||
echo -e "It will install the toolchain in /home/buildbot/tools\n"
|
echo -e "It will install the toolchain in /home/buildbot/tools\n"
|
||||||
echo -e "Arguments:\n"
|
echo -e "Arguments:\n"
|
||||||
echo -e "install:\n install or re(install) the toolchain"
|
echo -e "install:\n install or re(install) the toolchain"
|
||||||
echo -e "build:\n update the source tree and build everything"
|
echo -e "build:\n update the source tree and build everything"
|
||||||
|
echo -e "export:\n setup the environment for local building, run with source psp-env.sh"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
export PATH=$PATH:/home/buildbot/tools/devkitpro/devkitPSP/bin/
|
|
||||||
export DEVKITPRO=/home/buildbot/tools/devkitpro/
|
|
||||||
export DEVKITPSP=/home/buildbot/tools/devkitpro/devkitPSP/
|
|
||||||
export platform=psp1
|
|
||||||
export PLATFORM=psp1
|
|
||||||
export CC=psp-gcc
|
|
||||||
export CXX=psp-g++
|
|
||||||
|
|
||||||
cd ~
|
|
||||||
|
|
||||||
if [ "$1" = "install" ]; then
|
if [ "$1" = "install" ]; then
|
||||||
if [[ "$MSYSTEM" == *"MINGW64"* ]]; then
|
if [[ "$MSYSTEM" == *"MINGW64"* ]]; then
|
||||||
pacman -S git make p7zip tar wget
|
pacman -S git make p7zip tar wget
|
||||||
|
@ -61,6 +52,19 @@ if [ "$1" = "build" ]; then
|
||||||
./libretro-buildbot-recipe.sh recipes/playstation/psp
|
./libretro-buildbot-recipe.sh recipes/playstation/psp
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
if [ $# -le 1 ]; then
|
if [ "$1" = "export" ]; then
|
||||||
|
export PATH=$PATH:/home/buildbot/tools/devkitpro/devkitPSP/bin/
|
||||||
|
export DEVKITPRO=/home/buildbot/tools/devkitpro/
|
||||||
|
export DEVKITPSP=/home/buildbot/tools/devkitpro/devkitPSP/
|
||||||
|
export platform=psp1
|
||||||
|
export PLATFORM=psp1
|
||||||
|
export CC=psp-gcc
|
||||||
|
export CXX=psp-g++
|
||||||
|
|
||||||
|
echo environment ready...
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $# -le 0 ]; then
|
||||||
display_usage
|
display_usage
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue