From 14efff09789e1570fb1980cc106c1614d1887188 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sat, 12 Oct 2024 17:18:58 -0600 Subject: [PATCH] --target=powerpc-none-eabi -> powerpc-eabi No difference in behavior, but matches the binutils names, so I think it's ever so slightly nicer. --- tools/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/project.py b/tools/project.py index 852d4a77..1d9c79be 100644 --- a/tools/project.py +++ b/tools/project.py @@ -1595,7 +1595,7 @@ def generate_compile_commands( "clang", "-nostdinc", "-fno-builtin", - "--target=powerpc-none-eabi", + "--target=powerpc-eabi", *cflags, "-c", obj.src_path,