diff options
author | Aditya Mandaleeka <adityam@microsoft.com> | 2016-06-07 16:01:32 -0700 |
---|---|---|
committer | Aditya Mandaleeka <adityam@microsoft.com> | 2016-06-07 16:01:32 -0700 |
commit | 8d9ebf6d7c34312100312e04a1ddfaf4012e94ff (patch) | |
tree | db0758096c4471323f79a29294792c1da1a64ac1 /functions.cmake | |
parent | d0bcc5bdec1abf608849260652c8ada30fdf597d (diff) | |
download | coreclr-8d9ebf6d7c34312100312e04a1ddfaf4012e94ff.tar.gz coreclr-8d9ebf6d7c34312100312e04a1ddfaf4012e94ff.tar.bz2 coreclr-8d9ebf6d7c34312100312e04a1ddfaf4012e94ff.zip |
Strip debugging symbol table entries on OS X Release builds.
Diffstat (limited to 'functions.cmake')
-rw-r--r-- | functions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.cmake b/functions.cmake index 345903b967..9b77ad4308 100644 --- a/functions.cmake +++ b/functions.cmake @@ -113,7 +113,7 @@ function(strip_symbols targetName outputFilename) POST_BUILD VERBATIM COMMAND ${DSYMUTIL} --flat --minimize ${strip_source_file} - COMMAND ${STRIP} -u -r ${strip_source_file} + COMMAND ${STRIP} -S ${strip_source_file} COMMENT Stripping symbols from ${strip_source_file} into file ${strip_destination_file} ) elseif(CMAKE_SYSTEM_NAME STREQUAL Linux) |