Skip to content
Snippets Groups Projects
Commit b7b755e0 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Avoid warning: ittptmark64.o: missing .note.GNU-stack section implies executable stack

parent fcc9b0f8
No related branches found
No related tags found
1 merge request!1501Fixes for gcc 13, clang 16 and C++20
......@@ -87,6 +87,10 @@ if(GAUDI_USE_INTELAMPLIFIER)
SOURCES src/component/intel/IntelProfile.cpp
LINK GaudiKernel
IntelAmplifier::libittnotify)
# Avoid warning: ittptmark64.o: missing .note.GNU-stack section implies executable stack
# (deprecated behaviour)
target_link_options(IntelProfiler PRIVATE -Wl,-z,execstack)
target_link_options(GaudiIntelProfiling PRIVATE -Wl,-z,execstack)
else()
message(STATUS "GaudiProfiling: the module Intel VTune profiler is disabled")
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment