summaryrefslogtreecommitdiff
path: root/src/unwinder
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-01-31 23:42:27 -0800
committerJan Kotas <jkotas@microsoft.com>2016-01-31 23:42:27 -0800
commit2dd9b89a6dc84795a0f9e2dc93ea6a824ae552e9 (patch)
tree26646a7624be759f8b36e251c599ddffd74b83ac /src/unwinder
parent1765a84c03a37c9bdb7541cb7db49adad5dae6db (diff)
downloadcoreclr-2dd9b89a6dc84795a0f9e2dc93ea6a824ae552e9.tar.gz
coreclr-2dd9b89a6dc84795a0f9e2dc93ea6a824ae552e9.tar.bz2
coreclr-2dd9b89a6dc84795a0f9e2dc93ea6a824ae552e9.zip
Stop defining WIN32 in Unix builds
WIN32 was defined for 32-bit Unix builds in number of places which is incorrect. It caused build break in lldb header since they use WIN32 define for Windows-specific code.
Diffstat (limited to 'src/unwinder')
-rw-r--r--src/unwinder/dac/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/unwinder/dac/CMakeLists.txt b/src/unwinder/dac/CMakeLists.txt
index 561dbf2eaf..dcbfb0e1c0 100644
--- a/src/unwinder/dac/CMakeLists.txt
+++ b/src/unwinder/dac/CMakeLists.txt
@@ -12,14 +12,10 @@ elseif(CLR_CMAKE_PLATFORM_ARCH_I386)
add_definitions(-D_TARGET_X86_=1)
add_definitions(-DDBG_TARGET_32BIT=1)
add_definitions(-DDBG_TARGET_X86=1)
- add_definitions(-DDBG_TARGET_WIN32=1)
- add_definitions(-D_WIN32=1)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM)
add_definitions(-D_TARGET_ARM_=1)
add_definitions(-DDBG_TARGET_32BIT=1)
add_definitions(-DDBG_TARGET_ARM=1)
- add_definitions(-DDBG_TARGET_WIN32=1)
- add_definitions(-D_WIN32=1)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
add_definitions(-D_TARGET_ARM64_=1)
add_definitions(-DDBG_TARGET_64BIT=1)