Overview
Comment: | zshrc: Fix ObjFW flags for Nintendo Switch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ab12fcaaf34d1267a53bf6e5ac90c8fa |
User & Date: | js 2023-04-10 18:30:33 |
Context
2023-04-16
| ||
06:33 | setup.sh: Fix typo check-in: bd831c9024 user: js tags: trunk | |
2023-04-10
| ||
18:30 | zshrc: Fix ObjFW flags for Nintendo Switch check-in: ab12fcaaf3 user: js tags: trunk | |
2023-04-01
| ||
11:18 | setup.sh: Remove remnants of fish check-in: 6ee022af75 user: js tags: trunk | |
Changes
Changes to zshrc.
︙ | ︙ | |||
587 588 589 590 591 592 593 | if [ -z "$DEVKITA64" ]; then echo "Please set DEVKITA64!" return 1 fi export PATH="$DEVKITA64/bin:$DEVKITPRO/tools/bin:$PATH" export cross_host="aarch64-none-elf" | | | 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 | if [ -z "$DEVKITA64" ]; then echo "Please set DEVKITA64!" return 1 fi export PATH="$DEVKITA64/bin:$DEVKITPRO/tools/bin:$PATH" export cross_host="aarch64-none-elf" export objfw_configure_flags="--with-nintendo-switch" ;; wii | wii-u) if [ -z "$DEVKITPRO" ]; then echo "Please set DEVKITPRO!" return 1 fi if [ -z "$DEVKITPPC" ]; then |
︙ | ︙ |