0
I'm trying to profile a running application by running Intel VTune on Windows and by remote-connecting to the Linux Docker the program is running on.
When I end an analysis and that results are being processed then displayed, I see that the ''Effective CPU Utilization'' is fully occupied by ''idle'' and that the ''Top Hotspots'' contains barely nothing, and specifically, nothing from the .so shared libraries that contain all the executed code.
In the CMake Build Settings, I've added the following:
set(CMAKE_BUILD_TYPE Debug)
set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "dwarf")
When I compile I do see the ''-g'' compiler option but I still can't see any information about my own shared libaries.
Thank you !