scripts: build: gen_app_partitions: enquote archive name wildcards
Some linkers (e.g. the ARC MWDT one) don't recognize wildcards in file names if they are not enclosed in quotes. Looks like the quotes have no negative effect on the GNU ld linker, so just do it unconditionally. Signed-off-by: Ilya Tagunov <Ilya.Tagunov@synopsys.com>
This commit is contained in:
parent
aff8a0389a
commit
ab8c035fbe
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ data_template = """
|
|||
"""
|
||||
|
||||
library_data_template = """
|
||||
*{0}:*(.data .data.* .sdata .sdata.*)
|
||||
\"*{0}:*\"(.data .data.* .sdata .sdata.*)
|
||||
"""
|
||||
|
||||
bss_template = """
|
||||
|
@ -67,7 +67,7 @@ bss_template = """
|
|||
"""
|
||||
|
||||
library_bss_template = """
|
||||
*{0}:*(.bss .bss.* .sbss .sbss.* COMMON COMMON.*)
|
||||
\"*{0}:*\"(.bss .bss.* .sbss .sbss.* COMMON COMMON.*)
|
||||
"""
|
||||
|
||||
footer_template = """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue