commit 8da5397dcefeb3fb5721217a4e94dc7f5579584d
parent 9136363c8564eed38dbbef6adc575191ad892943
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date: Mon, 13 Apr 2026 10:05:22 +0200
cc2: Recurse in riscv64-sysv
Without this recursion the object riscv64-sysv/types.o was created
directly from the top level Makefile of cc2, but it was not deleted
ever because the clean target didn't recurse to that directory.
Adding the recursion solves the problem of the clean target and avoids
the direct creation from the top level Makefile.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/cmd/scc-cc/cc2/Makefile b/src/cmd/scc-cc/cc2/Makefile
@@ -4,6 +4,7 @@ DIRS =\
amd64-sysv\
arm64-sysv\
i386-sysv\
+ riscv64-sysv\
qbe\
qbe_amd64-sysv\
qbe_arm64-sysv\