diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-06-08 13:40:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-06-08 14:15:50 -0400 |
commit | 5666b88c698fe0ad85bf2e7646f0e9c837e2a08b (patch) | |
tree | f5e60a4715c0a7da749f683d46c7330ffd4c5943 /src | |
parent | 889be5b2757af1e61c2710c521a436c9506e1d9f (diff) | |
download | kutter-5666b88c698fe0ad85bf2e7646f0e9c837e2a08b.tar.gz kutter-5666b88c698fe0ad85bf2e7646f0e9c837e2a08b.tar.xz kutter-5666b88c698fe0ad85bf2e7646f0e9c837e2a08b.zip |
ar100: Convert to or1k-elf toolchain
The more.musl.cc site is blocking downloads from all github actions,
which makes it difficult to use that site for the ar100 cross build
toolchain. Convert to the openrisc or1k-elf toolchain as a
replacement.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/ar100/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ar100/Makefile b/src/ar100/Makefile index 29693fe2..275944d4 100644 --- a/src/ar100/Makefile +++ b/src/ar100/Makefile @@ -1,4 +1,4 @@ -CROSS_PREFIX=or1k-linux-musl- +CROSS_PREFIX=or1k-elf- dirs-y += src/generic src/ar100 lib/ar100 CFLAGS += -O3 |