1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
|
env:
- host=i386-apple-darwin
- IPHONEOS_DEPLOYMENT_TARGET=7.0
- clang="clang --sysroot $(xcrun --sdk iphonesimulator --show-sdk-path)"
- OBJC="$clang -arch i386 -arch x86_64"
- OBJCPP="$clang -arch i386 -E"
before_install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
sudo apt-get -qq update;
case $host in
i686-pc-linux-gnu)
sudo apt-get -qq install -y gobjc-multilib;
;;
"")
sudo apt-get -qq install -y gobjc;
;;
esac
fi
script:
- ./autogen.sh
- configure_args="${host+--host=$host}
${runtime+--enable-runtime}
${seluid24+--enable-seluid24}
${static+--disable-shared}"
- echo "Configure args:" $configure_args
- ./configure $configure_args || cat config.log
- make -j4
- sudo make install
|
>
>
>
>
>
>
>
<
|
|
>
|
|
|
>
|
<
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
|
|
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
|
env:
- host=i386-apple-darwin
- IPHONEOS_DEPLOYMENT_TARGET=7.0
- clang="clang --sysroot $(xcrun --sdk iphonesimulator --show-sdk-path)"
- OBJC="$clang -arch i386 -arch x86_64"
- OBJCPP="$clang -arch i386 -E"
# Nintendo 3DS
- os: linux
dist: trusty
env:
- nintendo_3ds=
- host=arm-none-eabi
before_install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
sudo apt-get -qq update;
if [[ $host == i686-pc-linux-gnu ]]; then
sudo apt-get -qq install -y gobjc-multilib;
fi
if [[ $host == "" ]]; then
sudo apt-get -qq install -y gobjc;
fi
if [[ ${nintendo_3ds+1} == 1 ]]; then
wget "https://download.sourceforge.net/project/devkitpro/devkitARM/devkitARM_r46/devkitARM_r46-x86_64-linux.tar.bz2"
"https://download.sourceforge.net/project/devkitpro/libctru/1.4.0/libctru-1.4.0.tar.bz2";
mkdir -p "$HOME/devkitPro/libctru";
tar -C "$HOME/devkitPro" -xjf
devkitARM_r46-x86_64-linux.tar.bz2;
tar -C "$HOME/devkitPro/libctru" -xjf
libctru-1.4.0.tar.bz2;
fi
fi
script:
- ./autogen.sh
- if [[ ${nintendo_3ds+1} == 1 ]]; then
export DEVKITPRO="$HOME/devkitPro";
export PATH="$DEVKITPRO/devkitARM/bin:$PATH";
fi
- configure_args="${host+--host=$host}
${runtime+--enable-runtime}
${seluid24+--enable-seluid24}
${static+--disable-shared}
${nintendo_3ds+--with-3ds}"
- echo "Configure args:" $configure_args
- ./configure $configure_args || cat config.log
- make -j4
- sudo PATH="$PATH" make install
|