File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 6
6
- ' develop'
7
7
pull_request :
8
8
9
+ # Workaround issue in Xcode 14.1/2
10
+ env :
11
+ DEVELOPER_DIR : /Applications/Xcode_14.0.1.app/Contents/Developer
12
+
9
13
jobs :
10
14
build-and-test :
11
15
runs-on : macos-latest
Original file line number Diff line number Diff line change @@ -243,6 +243,7 @@ if (USE_ACCEL)
243
243
target_link_libraries (
244
244
dbcsr
245
245
PRIVATE $< $< STREQUAL:${USE_ACCEL} ,cuda> :CUDA::cudart>
246
+ $< $< STREQUAL:${USE_ACCEL} ,cuda> :CUDA::cuda_driver>
246
247
$< $< STREQUAL:${USE_ACCEL} ,cuda> :CUDA::cublas>
247
248
$< $< STREQUAL:${USE_ACCEL} ,cuda> :CUDA::nvrtc>
248
249
$< $< BOOL:${WITH_CUDA_PROFILING} > :CUDA::nvToolsExt>
Original file line number Diff line number Diff line change 1
1
add_library (vecLibFort STATIC vecLibFort.c )
2
2
3
+ if (CMAKE_C_COMPILER_ID STREQUAL "GNU" )
4
+ target_compile_options (vecLibFort PRIVATE -flax-vector-conversions )
5
+ endif ()
6
+
3
7
install (
4
8
TARGETS vecLibFort
5
9
EXPORT DBCSRTargets
You can’t perform that action at this time.
0 commit comments