From: kosmirror <kos...@us...> - 2025-09-10 16:45:08
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 0e0205c10c910340bb9c31cced19ba4cb24fb51a (commit) from 60ef57f4c1a55b1e515b9c577527b07a3a0ed971 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 0e0205c10c910340bb9c31cced19ba4cb24fb51a Author: QuzarDC <qu...@co...> Date: Wed Sep 10 11:02:18 2025 -0400 romdisk: Have romdisk building use our standard `kos-cc` This brings it in-line with the rest of the build system in not echoing the block of args being passed to gcc unless verbose mode is being set. ----------------------------------------------------------------------- Summary of changes: Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index 6c34c9ed..f125a25f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -82,7 +82,7 @@ romdisk.img: romdisk.o: romdisk.img $(KOS_BASE)/utils/bin2c/bin2c romdisk.img romdisk_tmp.c romdisk - $(KOS_CC) $(KOS_CFLAGS) -o romdisk_tmp.o -c romdisk_tmp.c + kos-cc -o romdisk_tmp.o -c romdisk_tmp.c $(KOS_CC) -o romdisk.o -r romdisk_tmp.o $(KOS_LIB_PATHS) -Wl,--whole-archive -lromdiskbase rm romdisk_tmp.c romdisk_tmp.o endif hooks/post-receive -- A pseudo Operating System for the Dreamcast. |