<?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>i.MX ProcessorsのトピックRe: problem: installing libraries using new yocto layers</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274762#M30309</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daiane,&lt;/P&gt;&lt;P&gt;There was a minor problem in my recipe that I fixed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2014 16:17:34 GMT</pubDate>
    <dc:creator>mahyar1</dc:creator>
    <dc:date>2014-03-07T16:17:34Z</dc:date>
    <item>
      <title>problem: installing libraries using new yocto layers</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274760#M30307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I was trying to create a new layer using this great&lt;A _jive_internal="true" data-containerid="2004" data-containertype="14" data-objectid="95333" data-objecttype="102" href="https://community.nxp.com/docs/DOC-95333"&gt; thread&lt;/A&gt; by &lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-objectid="22426" data-objecttype="3" href="https://community.nxp.com/people/DaianeAngolini"&gt;Daiane Angolini&lt;/A&gt; which works for the test program (helloworld).&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I'm trying to create a simple library file and install it, I face with a problem.&lt;/P&gt;&lt;P&gt;here's the structure:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;meta-sample-c-library/&lt;/P&gt;&lt;P&gt;├── conf&lt;/P&gt;&lt;P&gt;│&amp;nbsp;&amp;nbsp; └── layer.conf&lt;/P&gt;&lt;P&gt;├── COPYING.MIT&lt;/P&gt;&lt;P&gt;├── README&lt;/P&gt;&lt;P&gt;└── recipes-example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; └── example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ├── newClibrary-0.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; │&amp;nbsp;&amp;nbsp; └── foo1.c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; └── newClibrary_0.1.bb&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;which I added to the bblayer config file.&lt;/P&gt;&lt;P&gt;now&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;bitbake newClibrary&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;succeeds.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I added the result to local.conf file:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;CORE_IMAGE_EXTRA_INSTALL += "newClibrary"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;but building the final image fails:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;bitbake core-image-minimal&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's the error I get:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;Error: newClibrary not found in the base feeds (nitrogen6x cortexa9hf-vfp-neon-mx6 cortexa9hf-vfp-neon cortexa9hf-vfp armv7ahf-vfp-neon armv7ahf-vfp armv6hf-vfp armv5ehf-vfp armv5hf-vfp noarch any all).&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here's also the newClibrary recipe:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;DESCRIPTION = "Simple helloworld application"&lt;/P&gt;&lt;P&gt;SECTION = "examples"&lt;/P&gt;&lt;P&gt;LICENSE = "CLOSED"&lt;/P&gt;&lt;P&gt;PR = "r0"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SRC_URI = "file://foo1.c"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;S = "${WORKDIR}"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do_compile() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${CC} -c foo1.c -o foo.o&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ${AR} rcs libfoo1.a foo.o&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do_install() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; install -d ${D}${libdir}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; install -m 0755 libfoo1.a ${D}${libdir}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions about what's the problem?&lt;/P&gt;&lt;P&gt;(I also attached all the files)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mahyar&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-336216"&gt;meta-sample-c-library.tar.gz&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 20:29:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274760#M30307</guid>
      <dc:creator>mahyar1</dc:creator>
      <dc:date>2014-03-04T20:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem: installing libraries using new yocto layers</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274761#M30308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don´t know what´s wrong, so I will need your help on debug, ok?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the error when you try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bitbake newClibrary&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 16:17:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274761#M30308</guid>
      <dc:creator>daiane_angolini</dc:creator>
      <dc:date>2014-03-06T16:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: problem: installing libraries using new yocto layers</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274762#M30309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daiane,&lt;/P&gt;&lt;P&gt;There was a minor problem in my recipe that I fixed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 16:17:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274762#M30309</guid>
      <dc:creator>mahyar1</dc:creator>
      <dc:date>2014-03-07T16:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem: installing libraries using new yocto layers</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274763#M30310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahyar&lt;BR /&gt;I'm working on the same kind of installing myown library.&lt;BR /&gt;Can u post the changes u made or add an attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 05:00:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/problem-installing-libraries-using-new-yocto-layers/m-p/274763#M30310</guid>
      <dc:creator>arunpm</dc:creator>
      <dc:date>2014-11-14T05:00:07Z</dc:date>
    </item>
  </channel>
</rss>

