diff options
| author | Michael Rogov Papernov <[email protected]> | 2026-02-12 14:54:45 +0000 |
|---|---|---|
| committer | Michael Rogov Papernov <[email protected]> | 2026-02-12 15:14:26 +0000 |
| commit | 05cdaf0ad09cc6ed2ecc54767f9873eef3bfcdfd (patch) | |
| tree | c8b1e71ed06221e1a73df5799eb8962774f74176 | |
| parent | 0b8bff8a74257d68b80abfd85b4f48d92f4c99b8 (diff) | |
fix ld symbols extraction
| -rw-r--r-- | hw/bsp/family_support.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bsp/family_support.cmake b/hw/bsp/family_support.cmake index 0130fb656..f97518faf 100644 --- a/hw/bsp/family_support.cmake +++ b/hw/bsp/family_support.cmake @@ -310,7 +310,7 @@ while [ -n \"$pending_ld_scripts\" ]; do \ done; \ ld_scripts=\"$(echo \"$all_ld_scripts\" | xargs)\"") set(MEMBROWSE_LD_DEFS_CMD - "ld_symbols=\"$(${CMAKE_MAKE_PROGRAM} -C ${CMAKE_BINARY_DIR} -t commands ${TARGET} | grep -oP '(?<=-Wl,--defsym=)[^[:space:]]+' | xargs)\"; \ + "ld_symbols=\"$(${CMAKE_MAKE_PROGRAM} -C ${CMAKE_BINARY_DIR} -t commands ${TARGET} | grep -oP '(?<=--defsym=)[^[:space:]]+' | xargs)\"; \ ld_defs=\"\"; \ for symbol in $ld_symbols; do \ ld_defs=\"$ld_defs --def $symbol\"; \ |
