Skip to content

Commit 48e3ed0

Browse files
Do not use -fno-sycl-use-footer
1 parent 08eac74 commit 48e3ed0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dpctl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function(build_dpctl_ext _trgt _src _dest)
162162
add_dependencies(${_trgt} _build_time_create_dpctl_include_copy ${_cythonize_trgt})
163163
if (DPCTL_GENERATE_COVERAGE)
164164
target_compile_definitions(${_trgt} PRIVATE CYTHON_TRACE=1 CYTHON_TRACE_NOGIL=1)
165-
target_compile_options(${_trgt} PRIVATE -fno-sycl-use-footer)
165+
# target_compile_options(${_trgt} PRIVATE -fno-sycl-use-footer)
166166
endif()
167167
target_link_libraries(${_trgt} PRIVATE DPCTLSyclInterface)
168168
set(_linker_options "LINKER:${DPCTL_LDFLAGS}")

libsyclinterface/cmake/modules/SetupCoverage.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function(setup_coverage_generation)
2525
string(CONCAT PROFILE_FLAGS
2626
"-fprofile-instr-generate "
2727
"-fcoverage-mapping "
28-
"-fno-sycl-use-footer "
28+
# "-fno-sycl-use-footer "
2929
# "-save-temps=obj "
3030
)
3131

0 commit comments

Comments
 (0)