Switch Travis to SDL2.

This commit is contained in:
Unknown W. Brackets 2014-10-12 09:51:47 -07:00
parent 1284b109d0
commit 62fdb6be92

View File

@ -35,10 +35,13 @@ before_install:
install:
# Ubuntu Linux + GCC 4.8
- if [ "$PPSSPP_BUILD_TYPE" == "Linux" ]; then
sudo apt-get install libsdl1.2-dev -qq &&
sudo add-apt-repository ppa:zoogie/sdl2-snapshots -y &&
if [[ "$CXX" == g++ ]]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y;
fi;
sudo apt-get update &&
sudo apt-get install libsdl2-dev -qq &&
if [[ "$CXX" == g++ ]]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y &&
sudo apt-get update &&
sudo apt-get install g++-4.8 -qq &&
export CXX="g++-4.8" CC="gcc-4.8";
fi;