Skip to content

Commit 482c63a

Browse files
committed
Fix windows gcsample
1 parent 036c530 commit 482c63a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/coreclr/gc/sample/CMakeLists.txt

+15
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@ set(SOURCES
2424
../softwarewritewatch.cpp
2525
)
2626

27+
if (CLR_CMAKE_TARGET_ARCH_AMD64 AND CLR_CMAKE_TARGET_WIN32)
28+
set ( SOURCES
29+
${SOURCES}
30+
../vxsort/isa_detection.cpp
31+
../vxsort/do_vxsort_avx2.cpp
32+
../vxsort/do_vxsort_avx512.cpp
33+
../vxsort/machine_traits.avx2.cpp
34+
../vxsort/smallsort/bitonic_sort.AVX2.int64_t.generated.cpp
35+
../vxsort/smallsort/bitonic_sort.AVX2.int32_t.generated.cpp
36+
../vxsort/smallsort/bitonic_sort.AVX512.int64_t.generated.cpp
37+
../vxsort/smallsort/bitonic_sort.AVX512.int32_t.generated.cpp
38+
../vxsort/smallsort/avx2_load_mask_tables.cpp
39+
)
40+
endif (CLR_CMAKE_TARGET_ARCH_AMD64 AND CLR_CMAKE_TARGET_WIN32)
41+
2742
if(CLR_CMAKE_TARGET_WIN32)
2843
set (GC_LINK_LIBRARIES
2944
${STATIC_MT_CRT_LIB}

0 commit comments

Comments
 (0)