summaryrefslogtreecommitdiff
path: root/src/ildasm
diff options
context:
space:
mode:
authorKyungwoo Lee <kyulee@microsoft.com>2016-06-02 10:02:58 -0700
committerKyungwoo Lee <kyulee@microsoft.com>2016-06-02 10:47:40 -0700
commit1bdc6eb40691b1fd0d19f5e137815d6bcfe359f5 (patch)
tree73539a134f4c46ff5d890440dad5b3c61ab9b01f /src/ildasm
parent4f975716f66f235d7ed45025ed29444fb297f41b (diff)
downloadcoreclr-1bdc6eb40691b1fd0d19f5e137815d6bcfe359f5.tar.gz
coreclr-1bdc6eb40691b1fd0d19f5e137815d6bcfe359f5.tar.bz2
coreclr-1bdc6eb40691b1fd0d19f5e137815d6bcfe359f5.zip
Fix Details for ILAsm/ILDasm/ClrJit Binaries
Fixes https://github.com/dotnet/coreclr/issues/5408
Diffstat (limited to 'src/ildasm')
-rw-r--r--src/ildasm/exe/CMakeLists.txt3
-rw-r--r--src/ildasm/rcdll/CMakeLists.txt2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ildasm/exe/CMakeLists.txt b/src/ildasm/exe/CMakeLists.txt
index 932c3850be..87cdd230f9 100644
--- a/src/ildasm/exe/CMakeLists.txt
+++ b/src/ildasm/exe/CMakeLists.txt
@@ -17,6 +17,9 @@ if(CLR_CMAKE_PLATFORM_UNIX)
set(ILDASM_RESOURCES
${TARGET_CPP_FILE}
)
+else()
+ set(ILDASM_RESOURCES ../dasm.rc)
+ add_definitions(-DFX_VER_INTERNALNAME_STR=ildasm.exe)
endif(CLR_CMAKE_PLATFORM_UNIX)
set(ILDASM_SOURCES
diff --git a/src/ildasm/rcdll/CMakeLists.txt b/src/ildasm/rcdll/CMakeLists.txt
index 93da34c3a8..5fb49daedc 100644
--- a/src/ildasm/rcdll/CMakeLists.txt
+++ b/src/ildasm/rcdll/CMakeLists.txt
@@ -8,6 +8,8 @@ add_definitions(-D__ILDASM__)
add_definitions(-DFEATURE_CORECLR)
add_definitions(-DFX_VFT=VFT_DLL)
+add_definitions(-DFX_VER_INTERNALNAME_STR=ildasmrc.dll)
+
set(ILDASM_RESOURCES
../dasm.rc
)