File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,11 @@ if(FEATURE_STANDALONE_GC)
148
148
include_directories (${CMAKE_CURRENT_SOURCE_DIR} )
149
149
include_directories (${CMAKE_CURRENT_SOURCE_DIR} /env)
150
150
151
- add_definitions (-DGC_DESCRIPTOR)
152
- add_subdirectory (datadescriptor)
151
+ # WASM-TODO this doesn't compile at the moment
152
+ if (NOT CLR_CMAKE_TARGET_ARCH_WASM)
153
+ add_definitions (-DGC_DESCRIPTOR)
154
+ add_subdirectory (datadescriptor)
155
+ endif (NOT CLR_CMAKE_TARGET_ARCH_WASM)
153
156
154
157
install_clr(TARGETS clrgc DESTINATIONS . sharedFramework COMPONENT runtime)
155
158
if (CLR_CMAKE_TARGET_ARCH_ARM64 OR CLR_CMAKE_TARGET_ARCH_AMD64)
Original file line number Diff line number Diff line change @@ -1024,4 +1024,7 @@ if(FEATURE_PERFTRACING)
1024
1024
add_subdirectory (eventing)
1025
1025
endif (FEATURE_PERFTRACING)
1026
1026
1027
- add_subdirectory (datadescriptor)
1027
+ # WASM-TODO this doesn't compile at the moment
1028
+ if (NOT CLR_CMAKE_TARGET_ARCH_WASM)
1029
+ add_subdirectory (datadescriptor)
1030
+ endif (NOT CLR_CMAKE_TARGET_ARCH_WASM)
You can’t perform that action at this time.
0 commit comments