We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab63c6 commit 9cb8652Copy full SHA for 9cb8652
cmake/compiler/gcc/target_rx.cmake
@@ -4,14 +4,15 @@ list(APPEND TOOLCHAIN_C_FLAGS)
4
list(APPEND TOOLCHAIN_C_FLAGS -mlittle-endian-data -ffunction-sections -fdata-sections -m64bit-doubles)
5
6
list(APPEND TOOLCHAIN_LD_FLAGS)
7
-list(APPEND TOOLCHAIN_LD_FLAGS -mlittle-endian-data)
+list(APPEND TOOLCHAIN_LD_FLAGS -mlittle-endian-data -ffunction-sections -fdata-sections -m64bit-doubles)
8
9
if(NOT CONFIG_PICOLIBC)
10
list(APPEND TOOLCHAIN_LD_FLAGS -lm)
11
endif()
12
13
if(NOT CONFIG_FPU)
14
list(APPEND TOOLCHAIN_C_FLAGS -nofpu)
15
+ list(APPEND TOOLCHAIN_LD_FLAGS -nofpu)
16
17
18
if("cross-compile" STREQUAL ${ZEPHYR_TOOLCHAIN_VARIANT})
0 commit comments