This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/../n64chain/tools/build-posix64-toolchain.sh b/build-posix64-toolchain.sh | |
index 71d56af..a81f60f 100755 | |
--- a/../n64chain/tools/build-posix64-toolchain.sh | |
+++ b/build-posix64-toolchain.sh | |
@@ -1,5 +1,5 @@ | |
#!/bin/bash | |
-set -eu | |
+set -eux | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-FileCopyrightText: 2021 Phil Burgess for Adafruit Industries | |
// | |
// SPDX-License-Identifier: MIT | |
/* | |
GOOGLY EYES for Adafruit EyeLight LED glasses + driver. Pendulum physics | |
simulation using accelerometer and math. This uses only the rings, not the | |
matrix portion. Adapted from Bill Earl's STEAM-Punk Goggles project: | |
https://learn.adafruit.com/steam-punk-goggles | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to get started: colima start | |
# to build: docker build -t n64sdkmod . | |
# to run with workspace dir: docker run -v $(pwd):/workspace -it n64sdkmod | |
FROM ubuntu:22.04 | |
ENV PATH=/etc/n64/usr/sbin:${PATH} | |
ENV PATH=/opt/crashsdk/bin:${PATH} | |
ENV ROOT=/etc/n64 |
OlderNewer