ulp: use quotes when specifying files for embedding ulp binaries

This commit is contained in:
Renz Christian Bagaporo
2020-02-14 11:20:11 +05:00
committed by bot
parent 23c62a4225
commit bb639bb91d
6 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ To compile the ULP code as part of the component, the following steps must be ta
set(ulp_s_sources ulp/ulp_assembly_source_file.S)
set(ulp_exp_dep_srcs "ulp_c_source_file.c")
ulp_embed_binary(${ulp_app_name} ${ulp_s_sources} ${ulp_exp_dep_srcs})
ulp_embed_binary(${ulp_app_name} "${ulp_s_sources}" "${ulp_exp_dep_srcs}")
The first argument to ``ulp_embed_binary`` specifies the ULP binary name. The name specified here will also be used by other generated artifacts
such as the ELF file, map file, header file and linker export file. The second argument specifies the ULP assembly source files.