Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | .travis.yml: Re-enable 3DS, DS and Wii PSP is unfortunately no longer part of devkitPro. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7acee0909f968fb02062f75902c408e6 |
| User & Date: | js 2018-08-11 21:34:06.000 |
Context
|
2018-08-11
| ||
| 21:53 | Fix build on 3DS and Wii check-in: 9a494f183b user: js tags: trunk | |
| 21:34 | .travis.yml: Re-enable 3DS, DS and Wii check-in: 7acee0909f user: js tags: trunk | |
| 20:45 | Fix --disable-threads --disable-sockets check-in: a220bd7393 user: js tags: trunk | |
Changes
Changes to .travis.yml.
| ︙ | ︙ | |||
98 99 100 101 102 103 104 |
# AmigaOS
- os: linux
dist: trusty
env:
- config=amigaos
| | | | | | | | | | | | | | | | | < < < < < < | < | | < < < | < < < < | < < < < | < > > | < > | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# AmigaOS
- os: linux
dist: trusty
env:
- config=amigaos
# Nintendo 3DS
- os: linux
dist: trusty
env:
- config=nintendo_3ds
# Nintendo DS
- os: linux
dist: trusty
env:
- config=nintendo_ds
# Nintendo Wii
- os: linux
dist: trusty
env:
- config=wii
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" -a -z "$config" ]; then
if ! sudo apt-get -qq update >/tmp/apt_log 2>&1; then
cat /tmp/apt_log;
exit 1;
fi;
if ! sudo apt-get -qq install -y gobjc-multilib >/tmp/apt_log 2>&1;
then
cat /tmp/apt_log;
exit 1;
fi;
fi
- if [ "$config" = "nintendo_3ds" -o "$config" = "nintendo_ds"
-o "$config" = "wii" ]; then
wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb;
sudo dpkg -i devkitpro-pacman.deb;
fi
- if [ "$config" = "nintendo_3ds" ]; then
sudo dkp-pacman --noconfirm -Syu 3ds-dev;
fi
- if [ "$config" = "nintendo_ds" ]; then
sudo dkp-pacman --noconfirm -Syu nds-dev;
fi
- if [ "$config" = "wii" ]; then
sudo dkp-pacman --noconfirm -Syu wii-dev;
fi
- if [ "$config" = "amigaos" ]; then
wget -q http://franke.ms/download/amiga-toolchain-centos.tgz;
tar -C / -xzf amiga-toolchain-centos.tgz;
fi
|
| ︙ | ︙ | |||
280 281 282 283 284 285 286 |
export PATH="/opt/amiga/bin:$PATH";
build --host=m68k-amigaos;
build --host=m68k-amigaos --disable-amiga-lib;
build --host=m68k-amigaos --enable-static;
fi
| | | > > > > > > | | < < < < < < < < | 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
export PATH="/opt/amiga/bin:$PATH";
build --host=m68k-amigaos;
build --host=m68k-amigaos --disable-amiga-lib;
build --host=m68k-amigaos --enable-static;
fi
- if [ "$config" = "nintendo_3ds" ]; then
export DEVKITPRO="/opt/devkitpro";
export PATH="$DEVKITPRO/devkitARM/bin:$PATH";
build --host=arm-none-eabi --with-3ds;
fi
- if [ "$config" = "nintendo_ds" ]; then
export DEVKITPRO="/opt/devkitpro";
export PATH="$DEVKITPRO/devkitARM/bin:$PATH";
build --host=arm-none-eabi --with-nds;
fi
- if [ "$config" = "wii" ]; then
export DEVKITPRO="/opt/devkitpro";
export PATH="$DEVKITPRO/devkitPPC/bin:$PATH";
build ac_cv_prog_wiiload= --host=powerpc-eabi --with-wii;
fi
|