Skip to content

Commit

Permalink
HOTFIX IC 2021-03-05: Correct static app build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Mar 5, 2021
1 parent 5d505c2 commit 178fbad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/target/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ foreach(CFSSYM ${${TGTNAME}_STATIC_SYMLIST})
string(REPLACE "," ";" CFSSYM "${CFSSYM}")
list(GET CFSSYM 0 SYM_NAME)
list(GET CFSSYM 1 SYM_MODULE)
list(APPEND GENERATED_EXTERNS "extern void ${SYM_NAME} (void);\n")
list(APPEND GENERATED_KEYVALS "{ .Name = \"${SYM_NAME}\", .Address = &{SYM_NAME}, .Module = \"${SYM_MODULE}\" },")
list(APPEND GENERATED_EXTERNS "extern void ${SYM_NAME} (void)\;\n")
list(APPEND GENERATED_KEYVALS "{ .Name = \"${SYM_NAME}\", .Address = &${SYM_NAME}, .Module = \"${SYM_MODULE}\" },")
endforeach(CFSSYM ${${TGTNAME}_STATIC_SYMLIST})

string(CONCAT GENERATED_FILE_HEADER
Expand Down

0 comments on commit 178fbad

Please sign in to comment.