From aeaa86553db2ddd882df6577744cec45828886a5 Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Mon, 18 Jan 2016 11:50:50 +0100 Subject: Add ready to run support to unix crossgen This change enables ready to run support in the unix crossgen that was accidentally not enabled when adding ready to run support for Unix in the past. Only the FEATURE_READYTORUN was set, but not the FEATURE_READYTORUN_COMPILER. --- crossgen.cmake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'crossgen.cmake') diff --git a/crossgen.cmake b/crossgen.cmake index 476e000aa7..6ff52347c1 100644 --- a/crossgen.cmake +++ b/crossgen.cmake @@ -19,11 +19,12 @@ remove_definitions( if(WIN32) add_definitions(-MT) - if(FEATURE_READYTORUN) - add_definitions(-DFEATURE_READYTORUN_COMPILER) - endif(FEATURE_READYTORUN) endif(WIN32) +if(FEATURE_READYTORUN) + add_definitions(-DFEATURE_READYTORUN_COMPILER) +endif(FEATURE_READYTORUN) + if(CLR_CMAKE_PLATFORM_LINUX) add_definitions(-DFEATURE_PERFMAP) endif(CLR_CMAKE_PLATFORM_LINUX) -- cgit v1.2.3