Revert "meta: build with -ffreestanding"

This reverts commit b0c4e6fd2f.

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
This commit is contained in:
Lephe 2024-08-07 10:13:47 +02:00
parent 93329ab697
commit 6ebfe8484e
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -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)