From 6ebfe8484ea3679e898453497986c53ec1302eb9 Mon Sep 17 00:00:00 2001 From: Lephe Date: Wed, 7 Aug 2024 10:13:47 +0200 Subject: [PATCH] Revert "meta: build with -ffreestanding" This reverts commit b0c4e6fd2fe46211002bfd0efa26612f79285f39. After investigation, this is related to builtin functions. Using -fno-builtin is a less invasive way to solve the problem. However this appears to be a bug [1]; in theory fat LTO objects should solve that. I will handle this matter at the fxSDK level by adding -fno-builtin right and experimenting with the bugfix in binutils 2.43. [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114337 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a2b4e91..fd0176a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -263,7 +263,7 @@ fxconv_declare_assets(${ASSETS_FX} ${ASSETS_CG}) include_directories( "${PROJECT_SOURCE_DIR}/include" "${PROJECT_BINARY_DIR}/include") -add_compile_options(-Wall -Wextra -std=c11 -Os -g -fstrict-volatile-bitfields -mtas -ffreestanding -flto) +add_compile_options(-Wall -Wextra -std=c11 -Os -g -fstrict-volatile-bitfields -mtas -flto) if("${FXSDK_PLATFORM_LONG}" STREQUAL fx9860G) add_compile_definitions(FX9860G)