File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,8 @@ jobs:
179
179
- name : Run tests
180
180
working-directory : ${{env.BUILD_DIR}}
181
181
run : |
182
- LD_LIBRARY_PATH=${{env.BUILD_DIR}}/lib/ ctest --output-on-failure # run all tests for better coverage
182
+ ${{ matrix.compiler.cxx == 'icpx' && '. /opt/intel/oneapi/setvars.sh' || true }}
183
+ LD_LIBRARY_PATH="${{env.BUILD_DIR}}/lib/:${LD_LIBRARY_PATH}" ctest --output-on-failure
183
184
184
185
- name : Check coverage
185
186
if : ${{ matrix.build_type == 'Debug' && matrix.compiler.c == 'gcc' }}
Original file line number Diff line number Diff line change @@ -378,9 +378,6 @@ function(add_umf_library)
378
378
elseif (LINUX )
379
379
target_link_options (${ARG_NAME} PRIVATE
380
380
"-Wl,--version-script=${ARG_LINUX_MAP_FILE} " )
381
- if (CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM" )
382
- target_link_options (${ARG_NAME} PRIVATE -no-intel-lib )
383
- endif ()
384
381
endif ()
385
382
endif ()
386
383
You can’t perform that action at this time.
0 commit comments