<?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: Imx8qxp - populate_sdk issue in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1925808#M227007</link>
    <description>&lt;P&gt;Hi &lt;/P&gt;
&lt;P&gt;No such issue in official release.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
    <pubDate>Tue, 06 Aug 2024 00:39:04 GMT</pubDate>
    <dc:creator>Zhiming_Liu</dc:creator>
    <dc:date>2024-08-06T00:39:04Z</dc:date>
    <item>
      <title>Imx8qxp - populate_sdk issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1922873#M226883</link>
      <description>&lt;P&gt;Hi Team,&amp;nbsp;&lt;BR /&gt;we are facing problem with sdk creation.&lt;/P&gt;&lt;P&gt;BSP Version : 6.6 (nanbield)&lt;/P&gt;&lt;P&gt;&amp;nbsp;Step 1 : bitbake -c populate_sdk_ext imx-image-full&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;ERROR: imx-image-full-1.0-r0 do_sdk_depends: The file /usr/include/llvm-c/OrcEE.h is installed by both llvm-native and clang-native, aborting&lt;BR /&gt;ERROR: Logfile of failure stored in: /home/sairam/yocto-bsp/N600/build-wayland/tmp/work/imx8qxpc0mek-poky-linux/imx-image-full/1.0/temp/log.do_sdk_depends.208512&lt;BR /&gt;ERROR: Task (/home/sairam/yocto-bsp/N600/sources/meta-imx/meta-imx-sdk/dynamic-layers/qt6-layer/recipes-fsl/images/imx-image-full.bb:do_sdk_depends) failed with exit code '1'&lt;BR /&gt;NOTE: Tasks Summary: Attempted 11877 tasks of which 11865 didn't need to be rerun and 1 failed.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Please find the logs attached.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please support us to resolve this issue.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 10:01:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1922873#M226883</guid>
      <dc:creator>Ram2</dc:creator>
      <dc:date>2024-08-01T10:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8qxp - populate_sdk issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1924803#M226976</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;
&lt;P&gt;Need time to reproduce this issue.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 00:59:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1924803#M226976</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2024-08-05T00:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8qxp - populate_sdk issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1925808#M227007</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;
&lt;P&gt;No such issue in official release.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Zhiming&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 00:39:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/1925808#M227007</guid>
      <dc:creator>Zhiming_Liu</dc:creator>
      <dc:date>2024-08-06T00:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8qxp - populate_sdk issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/2132018#M239176</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;This is due to a clash between clang and llvm. you're distincly installing clang from meta-clang and llvm from poky/meta/recipe-devtools/llvm. However in this version of yocto, clang recipe in meta-clang install both clang and llvm, giving that clang is implemented on the top of llvm.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Consequently, llvm binaries and libraries are shipped twice to the sdk&amp;nbsp; by both clang and llvm leading yocto to complain about the same object or path being provided by 2 distincts packages.&lt;BR /&gt;To solve that, the brut force would be to delete the llvm recipe in poky/meta/recipe-devtools/llvm and create a clang_%.bbappend file with the following content:&lt;BR /&gt;&lt;STRONG&gt;PROVIDES += "llvm"&lt;/STRONG&gt;&lt;BR /&gt;This inform yocto the llvm is now provided by clang in case other packages depends on llvm whichone you've just deleted the recipe.&lt;BR /&gt;Next, &lt;STRONG&gt;bitbake -ccleanall&lt;SPAN class=""&gt;imx-image-full &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;and&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;bitbake -cpopulate_sdk_ext&amp;nbsp;imx-image-full&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;Hope it'll be helpful. Let me know if you're still facing the issue after modifications.&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 23:04:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8qxp-populate-sdk-issue/m-p/2132018#M239176</guid>
      <dc:creator>guepy</dc:creator>
      <dc:date>2025-07-10T23:04:21Z</dc:date>
    </item>
  </channel>
</rss>

