We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581ee57 commit e7fc1a3Copy full SHA for e7fc1a3
CMakeLists.txt
@@ -53,6 +53,12 @@ if(${ENABLE_SPBLAS})
53
m
54
dl
55
)
56
+
57
+ target_compile_options(
58
+ test_root_spblas
59
+ PRIVATE
60
+ -i8 # required, otherwise segfaults
61
+ )
62
endif()
63
64
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake")
config/intel_ubuntu_spblas
@@ -1,4 +1,5 @@
1
#!/usr/bin/bash
2
cmake -S . -B build-spblas -DCMAKE_Fortran_COMPILER=ifx -DBUILD_TESTING=ON
3
cmake --build build-spblas
4
-./build/test/test_spblas
+./build-spblas/test/test_spblas
5
+./build-spblas/test_root_spblas
0 commit comments