zephyr/cmake/linker/ld
Torsten Rasmussen 1bd0b29918 cmake: scripts: supporting gen_relocate_app feature in windows
Fixes: #28847

This commit fixes two places that was causing gen_relocate_app to fail
in windows.

gen_relocate_app.py now splits only on first `:` in
`<MEM_REGION>:<file>`.

Windows contains `:` in path, thus only first `:` is valid for splitting
mem region and file path.

Second part of the issue is fixed in CMake where `'` was used for
quoting of command arguments.
This causes a file not found on Windows because the final `'` would be
treated as part of the filename. Similar the first `'` would be treated
as path of the mem region name.

This is fixed by using `"` for quoting, which works correctly on all
platforms.

gen_relocate_app.py:403: UserWarning: File: .../kernel/sem.c' Not found
Note the stray `'`                                         ^^^

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2021-01-20 11:51:47 +01:00
..
clang toolchain: improved toolchain abstraction for compilers and linker 2020-09-04 20:36:59 +02:00
gcc toolchain: improved toolchain abstraction for compilers and linker 2020-09-04 20:36:59 +02:00
host-gcc toolchain: improved toolchain abstraction for compilers and linker 2020-09-04 20:36:59 +02:00
linker_flags.cmake toolchain: improved toolchain abstraction for compilers and linker 2020-09-04 20:36:59 +02:00
target.cmake cmake: adding $<SEMICOLON> instead of space on zephyr_get_compile_<type> 2020-12-03 09:23:07 -05:00
target_baremetal.cmake
target_base.cmake cmake: extend target_ld_options() to support grouping of flags 2020-10-27 13:09:02 +01:00
target_configure.cmake
target_cpp.cmake
target_relocation.cmake cmake: scripts: supporting gen_relocate_app feature in windows 2021-01-20 11:51:47 +01:00