<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: No call stack infomation in Analyzers</title>
    <link>https://community.intel.com/t5/Analyzers/No-call-stack-infomation/m-p/1642395#M25372</link>
    <description>&lt;P&gt;Macc doesn't enable Call Stacks by default. You need to customize the analysis type by clicking the Plus Button at the top-right corner, and then selecting the Call Stacks.&lt;/P&gt;
&lt;P&gt;Additionally, build your source with '-g' option.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yuzhang3_intel_0-1731292803279.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/60229i88E80BCD5CF25EB4/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="yuzhang3_intel_0-1731292803279.png" alt="yuzhang3_intel_0-1731292803279.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Nov 2024 02:44:17 GMT</pubDate>
    <dc:creator>yuzhang3_intel</dc:creator>
    <dc:date>2024-11-11T02:44:17Z</dc:date>
    <item>
      <title>No call stack infomation</title>
      <link>https://community.intel.com/t5/Analyzers/No-call-stack-infomation/m-p/1642214#M25370</link>
      <description>&lt;P&gt;I'm doing &lt;STRONG&gt;memory profiler&lt;/STRONG&gt; on my&amp;nbsp; program using &lt;STRONG&gt;VTune 2024.2&lt;/STRONG&gt;, platform info: Ubuntu 24.04 ,CPU:&amp;nbsp;Intel(R) Core(TM) i5-8260U.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2024-11-09 22-42-33.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/60208iBD967AA80B8AA258/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot from 2024-11-09 22-42-33.png" alt="Screenshot from 2024-11-09 22-42-33.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Related CMake script snippet:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="bash"&gt;if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  target_link_libraries(${target_name} PUBLIC pthread dl)

  if(ENABLE_PROFILER)
    target_compile_options(${target_name} PRIVATE -fno-omit-frame-pointer -ggdb)
    target_link_options(${target_name} PRIVATE -fno-omit-frame-pointer)
  endif()
endif()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Building output snippet&lt;/P&gt;&lt;LI-CODE lang="bash"&gt;/usr/bin/g++ -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DHAVE_PROFILER -DNDEBUG -DQT_CHARTS_LIB -DQT_CORE_LIB -DQT_GUI_LIB -DQT_MESSAGELOGCONTEXT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_WARN -I/home/hxf0223/work/ut/rias/build/src/rias_playback -I/home/hxf0223/work/ut/rias/src/rias_playback -I/home/hxf0223/work/ut/rias/build/src/rias_playback/rias_playback_autogen/include -I/home/hxf0223/work/ut/rias/system -I/home/hxf0223/work/ut/rias/3rd/include -I/home/hxf0223/work/ut/rias/include -I/home/hxf0223/work/ut/rias/src/rias_playback/chart -I/home/hxf0223/work/ut/rias/src/rias_playback/gl_chart -I/home/hxf0223/work/ut/rias/src/rias_playback/6m_parser -I/home/hxf0223/work/ut/rias/src/rias_playback/widgets -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -isystem /usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCharts -O3 -DNDEBUG -std=gnu++20 -Wall -Wextra -pedantic -Werror -fno-omit-frame-pointer -ggdb -fPIC -MD -MT src/rias_playback/CMakeFiles/rias_playback.dir/gl_chart/gl_chart.cc.o -MF src/rias_playback/CMakeFiles/rias_playback.dir/gl_chart/gl_chart.cc.o.d -o src/rias_playback/CMakeFiles/rias_playback.dir/gl_chart/gl_chart.cc.o -c /home/hxf0223/work/ut/rias/src/rias_playback/gl_chart/gl_chart.cc&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Nov 2024 15:03:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/No-call-stack-infomation/m-p/1642214#M25370</guid>
      <dc:creator>roderickHuang</dc:creator>
      <dc:date>2024-11-09T15:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: No call stack infomation</title>
      <link>https://community.intel.com/t5/Analyzers/No-call-stack-infomation/m-p/1642395#M25372</link>
      <description>&lt;P&gt;Macc doesn't enable Call Stacks by default. You need to customize the analysis type by clicking the Plus Button at the top-right corner, and then selecting the Call Stacks.&lt;/P&gt;
&lt;P&gt;Additionally, build your source with '-g' option.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yuzhang3_intel_0-1731292803279.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/60229i88E80BCD5CF25EB4/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="yuzhang3_intel_0-1731292803279.png" alt="yuzhang3_intel_0-1731292803279.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 02:44:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Analyzers/No-call-stack-infomation/m-p/1642395#M25372</guid>
      <dc:creator>yuzhang3_intel</dc:creator>
      <dc:date>2024-11-11T02:44:17Z</dc:date>
    </item>
  </channel>
</rss>

