<?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: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ? in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431377#M65642</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ag74,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the below compiler flags which are having the same compiler switches as you have mentinoed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Wall -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I am getting the below error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -sh: ./testApp: No such file or directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The testApp is a 3rd party application. It uses lib-pthread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The path for dynamic linking is taken from &lt;STRONG&gt;/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi/usr/lib&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know if I need to check anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2015 07:09:40 GMT</pubDate>
    <dc:creator>bhayani_sunny</dc:creator>
    <dc:date>2015-09-09T07:09:40Z</dc:date>
    <item>
      <title>Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431371#M65636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm in charge of evaluating the iMX6 SoloX CPU using the iMX6SX Sabre SD demo board.&lt;/P&gt;&lt;P&gt;I succeeded in compiling the rootfs and the meta toolchain using Yocto but now I'm facing an issue with arm-poky-linux-gnueabi-gcc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm able to compile some GPU samples but I can't run them on the demo board, linux tells me "no such file or directory".&lt;/P&gt;&lt;P&gt;I checked the header section with readelf and everything seems to be ok (if I compare it with the /sbin/ifconfig header section).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To figure out why I can compile an ELF file but I can't execute it, I created a simple hello world sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I compile using the following commands everything's ok and I can run the output file (hello).&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;arm-poky-linux-gnueabi-gcc -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/freescale/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi -o hello hello.c&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I compile the same source file in several stages (as It's done in makefiles).&lt;/P&gt;&lt;P&gt;Frist I create a .o file and then I create the ELF file, I can't execute the output file (hello_bin).&lt;/P&gt;&lt;P&gt;Here's the command I use to generate the .o file.&lt;/P&gt;&lt;BLOCKQUOTE&gt;arm-poky-linux-gnueabi-gcc -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/freescale/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi -c hello.c -o hello_bis.o&lt;/BLOCKQUOTE&gt;&lt;P&gt;and the command to generate the ELF file.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;arm-poky-linux-gnueabi-gcc --sysroot=/opt/freescale/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi -o hello_bis hello_bis.o&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I can execute hello but not hello_bis. The files do not have the same size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to repeat those two tests using arm-linux-gnueabihf-gcc, which is the gcc from the iMX6-based Toradex module, and the sysroot generated by freescale Yocto.&lt;/P&gt;&lt;P&gt;With this configuration (Toradex's gcc + freescale's sysroot) I can compile hello and hello_bis, they have the same size and they both work fine on the demo board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that I tried to recompile one of our biggest app using its makefile. I can't run the output generated by the arm-poky-linux-gnueabi-gcc but I can run the one generated by arm-linux-gnueabihf-gcc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is arm-poky-linux-gnueabi-gcc buggy ?&lt;/P&gt;&lt;P&gt;Does anyone can explain why the hello binary generated in one stage works fine and the hello_bis binary generated in two stages does not when using arm-poky-linux-gnueabi-gcc but they both work fine when generated with arm-linux-gnueabihf-gcc using the same compiling flags ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2015 15:27:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431371#M65636</guid>
      <dc:creator>ag74</dc:creator>
      <dc:date>2015-09-07T15:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431372#M65637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ag74,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are facing same issue. It would be great if you can share the link to download the toolchain '&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;arm-linux-gnueabihf-gcc&lt;/SPAN&gt;', the one you were talking about in your post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dhaval&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 04:47:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431372#M65637</guid>
      <dc:creator>dhavalvadhar</dc:creator>
      <dc:date>2015-09-08T04:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431373#M65638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please follow the Yocto development flow call SDK, which is populated from yocto build system for application develop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bitbake &amp;lt;image&amp;gt; -c populate_sdk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the example, of course SDK installed:&lt;/P&gt;&lt;P&gt;source /opt/poky/1.6.2/environment-setup-cortexa9hf-vfp-neon-poky-linux-gnueabi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$CC -o hello&amp;nbsp; hello.c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the all the development should based on the SDK including the rootfs, library, etc.&lt;/P&gt;&lt;P&gt;Please check the Yocto website and document for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For why can not execute the hello in different toolchain. That is basic knowledge for a software engineer and long topic.&lt;/P&gt;&lt;P&gt;It is related execute loader for different toolchain and library, which is for rootfs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if you use dynamic link with uclibc then can not execute in the glibc rootfs system, which need loader and match the link and execute relocation.&lt;/P&gt;&lt;P&gt;But it you make a static link with uclibc,&amp;nbsp; It can run in the glibc system. cause it no need loader. &lt;/P&gt;&lt;P&gt;A static link hello. also can run in the android, which is bionic gcc and lib.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try link with flag&amp;nbsp; -static to try to see what happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 06:02:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431373#M65638</guid>
      <dc:creator>BiyongSUN</dc:creator>
      <dc:date>2015-09-08T06:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431374#M65639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this reminder but this is not the cause of the issue.&lt;/P&gt;&lt;P&gt;I figured out what's wrong with arm-poky-linux-gnueabi-gcc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the correct command line to link the ELF file.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;arm-poky-linux-gnueabi-gcc &lt;STRONG&gt;-mfloat-abi=hard&lt;/STRONG&gt; --sysroot=/opt/freescale/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi -o hello_bis hello_bis.o&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I added the float flag to the link command and now it works fine. The two different ELF files have the same sizes and both work fine.&lt;/P&gt;&lt;P&gt;Poky may not be built with hard floats by default.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 08:09:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431374#M65639</guid>
      <dc:creator>ag74</dc:creator>
      <dc:date>2015-09-08T08:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431375#M65640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhaval Vadhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I figured out what's wrong see my latest post and add the flag &lt;STRONG&gt;-mfloat-abi=hard&lt;/STRONG&gt; to your linking command it may fix your issue too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 08:16:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431375#M65640</guid>
      <dc:creator>ag74</dc:creator>
      <dc:date>2015-09-08T08:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431376#M65641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ag74 for your reply. Let me check at our end.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2015 10:03:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431376#M65641</guid>
      <dc:creator>dhavalvadhar</dc:creator>
      <dc:date>2015-09-08T10:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431377#M65642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ag74,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the below compiler flags which are having the same compiler switches as you have mentinoed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Wall -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I am getting the below error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -sh: ./testApp: No such file or directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The testApp is a 3rd party application. It uses lib-pthread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The path for dynamic linking is taken from &lt;STRONG&gt;/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi/usr/lib&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know if I need to check anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 07:09:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431377#M65642</guid>
      <dc:creator>bhayani_sunny</dc:creator>
      <dc:date>2015-09-09T07:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431378#M65643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class="replyToName"&gt;Sunny Bhayani,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P&gt;I am using the below compiler flags which are having the same compiler switches as you have mentinoed:&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -Wall -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The switches above are the ones used for the compiling stage.&lt;/P&gt;&lt;P&gt;The switches used during the linking stage may look like something similar to the ones below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt; -lpthread -mfloat-abi=hard --sysroot=/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you use OpenVG and ELG libs you must add &lt;STRONG&gt;-lOpenVG -lEGL&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;If you use math functions you must add &lt;STRONG&gt;-lm&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;If the app is coded in C++ and compiling with GCC you must use &lt;STRONG&gt;-lstdc++&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it still does not work, can you post the make's output ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 07:23:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431378#M65643</guid>
      <dc:creator>ag74</dc:creator>
      <dc:date>2015-09-09T07:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431379#M65644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ag74,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You correctly pointed. I was adding the switches to compilation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have added the 2 flags that you mentioned whiling linking and the problem is resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:07:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431379#M65644</guid>
      <dc:creator>bhayani_sunny</dc:creator>
      <dc:date>2015-09-09T08:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431380#M65645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Verdana','sans-serif';"&gt;&amp;nbsp; As for floating point support – FSL i.MX6 BSPs do not have it under LTIB release &lt;BR /&gt;and does support for Yocto. Say, for the recent L3.14.28 :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Verdana','sans-serif';"&gt;“Supports the GCC 4.9.1 toolchain with the hardware floating point build”.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Verdana','sans-serif';"&gt;"About compiler options when using NEON in i.MX6DL"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Verdana','sans-serif';"&gt;&lt;A class="jive-link-thread-small" data-containerid="2004" data-containertype="14" data-objectid="331886" data-objecttype="1" href="https://community.freescale.com/thread/331886"&gt;https://community.freescale.com/thread/331886&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yuri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 09:09:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431380#M65645</guid>
      <dc:creator>Yuri</dc:creator>
      <dc:date>2015-09-10T09:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is arm-poky-linux-gnueabi-gcc for iMX6 SoloX buggy ?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431381#M65646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ag74&lt;/P&gt;&lt;P&gt;Some problems and error I need your help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y@lxy-Latitude-3540:~/opencv-camera-test---i.MX6-Yocto/src$ /opt/fsl-imx-fb/3.14.52-1.1.0/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-g++&amp;nbsp; -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/fsl-imx-fb/3.14.52-1.1.0/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi -g -O0 -o readpicture readpicture.cpp `pkg-config --cflags --libs opencv`&lt;/P&gt;&lt;P&gt;/opt/fsl-imx-fb/3.14.52-1.1.0/sysroots/x86_64-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lopencv_ts&lt;/P&gt;&lt;P&gt;collect2: error: ld returned 1 exit status&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2016 06:15:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Is-arm-poky-linux-gnueabi-gcc-for-iMX6-SoloX-buggy/m-p/431381#M65646</guid>
      <dc:creator>yooliang</dc:creator>
      <dc:date>2016-05-17T06:15:15Z</dc:date>
    </item>
  </channel>
</rss>

