forked from dotnet/coreclr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrossgen.cmake
More file actions
30 lines (25 loc) · 723 Bytes
/
crossgen.cmake
File metadata and controls
30 lines (25 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Contains the crossgen build specific definitions. Included by the leaf crossgen cmake files.
add_definitions(
-DCROSSGEN_COMPILE
-DCROSS_COMPILE
-DFEATURE_NATIVE_IMAGE_GENERATION
-DFEATURE_MERGE_JIT_AND_ENGINE
-DSELF_NO_HOST)
remove_definitions(
-DEnC_SUPPORTED
-DFEATURE_EVENT_TRACE=1
-DFEATURE_LOADER_OPTIMIZATION
-DFEATURE_MULTICOREJIT
-DFEATURE_PERFMAP
-DFEATURE_RANDOMIZED_STRING_HASHING
-DFEATURE_VERSIONING_LOG
)
if(WIN32)
add_definitions(-MT)
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)