Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | .travis.yml: Remove hack for amiga-gcc This is no longer required. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c93d2a5ec904d5ef08757ed9e86a7191 |
| User & Date: | js 2018-05-21 10:53:57.000 |
Context
|
2018-05-21
| ||
| 12:10 | ofzip: Refactor safe path checking check-in: f29afa4a27 user: js tags: trunk | |
| 10:53 | .travis.yml: Remove hack for amiga-gcc check-in: c93d2a5ec9 user: js tags: trunk | |
|
2018-05-20
| ||
| 11:47 | configure: Remove obsolete hacks for amiga-gcc check-in: ed33226276 user: js tags: trunk | |
Changes
Changes to .travis.yml.
| ︙ | ︙ | |||
217 218 219 220 221 222 223 |
export OBJCPP="$clang -arch i386 -E";
build WRAPPER=true --host=i386-apple-darwin --enable-static;
fi
- if [ "$config" = "amigaos" ]; then
export PATH="/opt/amiga/bin:$PATH";
| | | 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
export OBJCPP="$clang -arch i386 -E";
build WRAPPER=true --host=i386-apple-darwin --enable-static;
fi
- if [ "$config" = "amigaos" ]; then
export PATH="/opt/amiga/bin:$PATH";
build --host=m68k-amigaos;
fi
- if [ "$config" = "devkitarm" ]; then
export DEVKITPRO="$HOME/devkitPro";
export PATH="$DEVKITPRO/devkitARM/bin:$PATH";
build --host=arm-none-eabi --with-3ds;
|
| ︙ | ︙ |