From a67449f20f114d16ea846b3d6b51102922d900e5 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 10 Oct 2022 11:53:03 +0000 Subject: [PATCH] Fixed some more regressions. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15821 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- demos/various/RT-Posix-Simulator/Makefile | 2 +- demos/various/RT-Win32-Simulator/Makefile | 2 +- test/rt/testbuild/Makefile | 2 +- test/rt/testbuild/Makefile_win32 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/demos/various/RT-Posix-Simulator/Makefile b/demos/various/RT-Posix-Simulator/Makefile index a4906141f..b9f106d47 100755 --- a/demos/various/RT-Posix-Simulator/Makefile +++ b/demos/various/RT-Posix-Simulator/Makefile @@ -25,7 +25,7 @@ endif # Linker extra options here. ifeq ($(USE_LDOPT),) - USE_LDOPT = + USE_LDOPT = --defsym=__main_thread_stack_base__=0,--defsym=__main_thread_stack_end__=0 endif # Enable this if you want link time optimizations (LTO). diff --git a/demos/various/RT-Win32-Simulator/Makefile b/demos/various/RT-Win32-Simulator/Makefile index 4bb9801e4..697bd0fdb 100644 --- a/demos/various/RT-Win32-Simulator/Makefile +++ b/demos/various/RT-Win32-Simulator/Makefile @@ -25,7 +25,7 @@ endif # Linker extra options here. ifeq ($(USE_LDOPT),) - USE_LDOPT = + USE_LDOPT = --defsym=___main_thread_stack_base__=0,--defsym=___main_thread_stack_end__=0 endif # Enable this if you want link time optimizations (LTO). diff --git a/test/rt/testbuild/Makefile b/test/rt/testbuild/Makefile index d22395733..d5b53dc12 100755 --- a/test/rt/testbuild/Makefile +++ b/test/rt/testbuild/Makefile @@ -25,7 +25,7 @@ endif # Linker extra options here. ifeq ($(USE_LDOPT),) - USE_LDOPT = + USE_LDOPT = --defsym=__main_thread_stack_base__=0,--defsym=__main_thread_stack_end__=0 endif # Enable this if you want link time optimizations (LTO). diff --git a/test/rt/testbuild/Makefile_win32 b/test/rt/testbuild/Makefile_win32 index c935e9268..6933e0a98 100755 --- a/test/rt/testbuild/Makefile_win32 +++ b/test/rt/testbuild/Makefile_win32 @@ -25,7 +25,7 @@ endif # Linker extra options here. ifeq ($(USE_LDOPT),) - USE_LDOPT = + USE_LDOPT = --defsym=___main_thread_stack_base__=0,--defsym=___main_thread_stack_end__=0 endif # Enable this if you want link time optimizations (LTO).