summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-03-15 16:04:06 -0700
committerMike McLaughlin <mikem@microsoft.com>2016-03-22 14:24:03 -0700
commit4efef62f0ead16b4f8ca2c6ccf0a77ce112f73b9 (patch)
tree97f19fefb5832f8e92f63b2cd7c09c43ac9b0904 /src/tools
parent1a9eb1c5f4d9f257f3f96ef5205a0eb1a23395c3 (diff)
downloadcoreclr-4efef62f0ead16b4f8ca2c6ccf0a77ce112f73b9.tar.gz
coreclr-4efef62f0ead16b4f8ca2c6ccf0a77ce112f73b9.tar.bz2
coreclr-4efef62f0ead16b4f8ca2c6ccf0a77ce112f73b9.zip
Strip symbols on release builds into separate binaries
Issue #3669 Created a common cmake strip_symbols function that all the modules and programs use to strip the symbols out of the main into a separate .dbg (Linux) or .dSYM (OSX) file. Added an install_clr cmake function to encapsulate the install logic. Changed all the library module cmake install lines from a TARGETS to a FILES one. The TARGETS based install directives caused cmake to relink the binary and copy the unstripped version to the install path. Left the all programs like corerun or ildasm as TARGETS installs because on OSX FILES type installs don't get marked as executable. Need to use "get_property(strip_source_file TARGET ${targetName} PROPERTY LOCATION)" for the older versions of cmake and "set(strip_source_file $<TARGET_FILE:${targetName}>)" on newer versions (v3 or greater).
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/crossgen/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/tools/crossgen/CMakeLists.txt b/src/tools/crossgen/CMakeLists.txt
index 9bbf37334a..d5e956620f 100644
--- a/src/tools/crossgen/CMakeLists.txt
+++ b/src/tools/crossgen/CMakeLists.txt
@@ -64,14 +64,11 @@ else()
if (NOT CLR_CMAKE_PLATFORM_ARCH_ARM64)
target_link_libraries(crossgen ${STATIC_MT_VCRT_LIB})
endif()
-
- # We will generate PDB only for the debug configuration
- install (FILES ${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/crossgen.pdb DESTINATION PDB)
-
endif(CLR_CMAKE_PLATFORM_UNIX)
-install (TARGETS crossgen DESTINATION .)
-
add_subdirectory(../../zap/crossgen ../../zap/crossgen)
add_subdirectory(../../vm/crossgen ../../vm/crossgen)
add_subdirectory(../../vm/crossgen_mscorlib ../../vm/crossgen_mscorlib)
+
+# add the install targets
+install_clr(crossgen) \ No newline at end of file