mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-10 01:50:53 +09:00
Fix paths in "Stripping symbols" message (#82215)
This commit is contained in:
parent
96e033107f
commit
f52d11c9f6
1 changed files with 2 additions and 2 deletions
|
@ -423,7 +423,7 @@ function(strip_symbols targetName outputFilename)
|
|||
VERBATIM
|
||||
COMMAND ${DSYMUTIL} ${DSYMUTIL_OPTS} ${strip_source_file}
|
||||
COMMAND ${strip_command}
|
||||
COMMENT "Stripping symbols from ${strip_source_file} into file ${strip_destination_file}"
|
||||
COMMAND sh -c "echo Stripping symbols from $(basename '${strip_source_file}') into $(basename '${strip_destination_file}')"
|
||||
)
|
||||
else (CLR_CMAKE_TARGET_APPLE)
|
||||
|
||||
|
@ -434,7 +434,7 @@ function(strip_symbols targetName outputFilename)
|
|||
COMMAND ${CMAKE_OBJCOPY} --only-keep-debug ${strip_source_file} ${strip_destination_file}
|
||||
COMMAND ${CMAKE_OBJCOPY} --strip-debug --strip-unneeded ${strip_source_file}
|
||||
COMMAND ${CMAKE_OBJCOPY} --add-gnu-debuglink=${strip_destination_file} ${strip_source_file}
|
||||
COMMENT "Stripping symbols from ${strip_source_file} into file ${strip_destination_file}"
|
||||
COMMAND sh -c "echo Stripping symbols from $(basename '${strip_source_file}') into $(basename '${strip_destination_file}')"
|
||||
)
|
||||
endif (CLR_CMAKE_TARGET_APPLE)
|
||||
endif(CLR_CMAKE_HOST_UNIX)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue