From: kosmirror <kos...@us...> - 2025-08-12 00:57:54
|
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 1e6a1b3041ee8aebe2845c07b9ac3436b9f5fd81 (commit) from 92a3b3595f7e66494fedbf55dad9dea281aeb29c (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 1e6a1b3041ee8aebe2845c07b9ac3436b9f5fd81 Author: darc <da...@pr...> Date: Mon Aug 11 15:35:51 2025 -0500 Reorder linker script inputs to place crtn.o after crtend.o Without the proper ordering, C++ applications immediately crash ----------------------------------------------------------------------- Summary of changes: utils/ldscripts/shlelf.xc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/ldscripts/shlelf.xc b/utils/ldscripts/shlelf.xc index 57af3b60..8569537c 100644 --- a/utils/ldscripts/shlelf.xc +++ b/utils/ldscripts/shlelf.xc @@ -5,8 +5,8 @@ OUTPUT_ARCH(sh) STARTUP(_kos_startup.o) INPUT(crti.o) INPUT(crtbegin.o) -INPUT(crtn.o) INPUT(crtend.o) +INPUT(crtn.o) LOAD_OFFSET = DEFINED(LOAD_OFFSET) ? LOAD_OFFSET : 0x8c010000 ; SECTIONS hooks/post-receive -- A pseudo Operating System for the Dreamcast. |