From: Christian Lamparter Date: Sun, 5 Nov 2017 15:42:39 +0000 (+0100) Subject: carl9170: fix spurious "error: unrecognized command line option ‘-rdynamic’" X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=bbc5d742913079f573526c20df9169c926bb8035 carl9170: fix spurious "error: unrecognized command line option ‘-rdynamic’" This error came from cmake's module Linux-GNU-C.cmake that sets the linker options. However, this is an embedded target and it does not support dynamic linking. Until this is fixed, let's just overwrite the line. Signed-off-by: Christian Lamparter --- diff --git a/extra/sh-elf-linux.cmake b/extra/sh-elf-linux.cmake index 2429436..3fdf98c 100644 --- a/extra/sh-elf-linux.cmake +++ b/extra/sh-elf-linux.cmake @@ -7,6 +7,7 @@ set(CMAKE_FIND_ROOT_PATH ${CMAKE_SOURCE_DIR}/toolchain/inst/) set(CMAKE_C_FLAGS "-m2 -ml -Os -ffreestanding -nostartfiles") set(CMAKE_C_LINK_FLAGS "-Wl,-static,-EL,-x,--gc-sections") +set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") set(OBJCOPY ${CMAKE_SOURCE_DIR}/toolchain/inst/bin/sh-elf-objcopy) set(CMAKE_C_COMPILER "${CMAKE_SOURCE_DIR}/toolchain/inst/bin/sh-elf-gcc")