<?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: Cross-Compiling using makefile in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521436#M84403</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 followed the same steps still i am geeting the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know one thing where the shared libraries will be present&lt;/P&gt;&lt;P&gt;Say like I am compiling a .c file $CC main.c -lpthread, from where the -lpthread reference is getting?? Where the -lpthread in arm-poky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 10:40:43 GMT</pubDate>
    <dc:creator>chandraevolute</dc:creator>
    <dc:date>2016-06-16T10:40:43Z</dc:date>
    <item>
      <title>Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521434#M84401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN style="font-family: 'Garamond',serif; color: #1f497d;"&gt;We have one existing application source which uses Makefile which set the compiler with something like &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Garamond',serif; color: #1f497d;"&gt;CC=$(CROSS_COMPILE)gcc. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;I have two variables in makefile &lt;SPAN style="color: #1f497d; font-family: Garamond, serif;"&gt;CROSS_COMPILE and &lt;SPAN style="color: #1f497d; font-family: Garamond, serif;"&gt;SYSROOT, i am setting these variables as shown below&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt; # export ARCH=arm&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;# export CROSS_COMPILE=&amp;lt;path to cross compiler prefix&amp;gt; (e.g./opt/poky/1.5.1/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/ arm-poky-linux-gnueabi-)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;#export SYSROOT=/opt/poky/1.8/sysroots/cortexa7hf-vfp-neon-poky-linux-gnueabi&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;# make clean&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;# make&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Garamond, serif; color: #1f497d;"&gt;If I give make I am getting the below error. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Garamond, serif; color: red;"&gt;../../Outils/GLOG/GLOG/src/IniParser/dictionary.h:36:19: fatal error: stdio.h: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Garamond, serif; color: red;"&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt; font-family: Garamond, serif;"&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: Garamond, serif; color: red;"&gt;compilation terminated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;Later I checked whether sysroot is set or not by using this command&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;$ arm-poky-linux-gnueabi-gcc -print-sysroot&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;And it gave output /not/exist it means sysroot is not set&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;So I have added --sysroot to my CFLAGS in Makefile and gave make&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Garamond, serif; color: #1f497d; font-size: 12pt;"&gt;It gave the below errors &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;building .so.1.0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find crt1.o: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find crti.o: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find crtbegin.o: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lgcc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lgcc_s&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lgcc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find -lgcc_s&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find crtend.o: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find crtn.o: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;collect2: error: ld returned 1 exit status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;make[1]: *** [.so.1.0] Error 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;make[1]: Leaving directory `/home/linux/MorphoSmart_SDK_6.13.2.0_linux/PC/Sdk_linux/GLOG'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;make: *** [lib] Error 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: red; font-size: 12pt;"&gt;&lt;A href="mailto:linux@ubuntu:~/MorphoSmart_SDK_6.13.2.0_linux/PC/Sdk_linux$"&gt;linux@ubuntu:~/MorphoSmart_SDK_6.13.2.0_linux/PC/Sdk_linux$&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030; font-size: 12pt;"&gt; .o's are getting generated, but it is throwing error when it is trying to generate library&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030; font-size: 12pt;"&gt;I don't have any other way to compile other than using Makefile. Because the project has so many source files in different folders. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030; font-size: 12pt;"&gt;Can anyone suggest where I am going wrong.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 11:26:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521434#M84401</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-06-15T11:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521435#M84402</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;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;First, environment should be set, and under this environment &lt;BR /&gt; makefile may be run. The following helps to setup the environment&amp;nbsp; :&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2.0pt; margin-bottom: 2.0pt;"&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P style="margin-top: 2.0pt; margin-bottom: 2.0pt;"&gt;&lt;A href="https://community.nxp.com/thread/394804"&gt;cannot find crt1.o&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Have a great day,&lt;BR /&gt;Yuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 05:38:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521435#M84402</guid>
      <dc:creator>Yuri</dc:creator>
      <dc:date>2016-06-16T05:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521436#M84403</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 followed the same steps still i am geeting the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to know one thing where the shared libraries will be present&lt;/P&gt;&lt;P&gt;Say like I am compiling a .c file $CC main.c -lpthread, from where the -lpthread reference is getting?? Where the -lpthread in arm-poky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 10:40:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521436#M84403</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-06-16T10:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521437#M84404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/Yuri"&gt;Yuri&lt;/A&gt;​ I solved above issue by changing the --sysroot path and now I am getting new error &lt;/P&gt;&lt;P&gt;arm-poky-linux-gnueabi-gcc MSO_Version.o MSO_Connect.o MSO_errors.o -o bin/MSO_Version_shared -Wall -g -Os -fPIC -march=armv7-a -mfloat-abi=hard -mfpu=neon -mtune=cortex-a7 --sysroot=/home/fsl-release-bsp/build_image/tmp/sysroots/imx6ulevk -I../include -I../wsq -I/home/fsl-release-bsp/build_image/tmp/sysroots/imx6ulevk/usr/include/ -L/opt/poky/1.8/sysroots/cortexa7hf-vfp-neon-poky-linux-gnueabi/usr/lib -L../lib -L/opt/poky/1.8/sysroots/i686-pokysdk-linux/lib -L/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/lib -L/home/fsl-release-bsp/build_image/tmp/sysroots/imx6ulevk/usr/lib -lMSO -lMSOComm -lusb&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: skipping incompatible /opt/poky/1.8/sysroots/i686-pokysdk-linux/lib/libgcc_s.so.1 when searching for libgcc_s.so.1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /lib/libc.so.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /usr/lib/libc_nonshared.a&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /lib/ld-linux-armhf.so.3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;collect2: error: ld returned 1 exit status&lt;/P&gt;&lt;P&gt;make[1]: *** [MSO_Version_shared] Error 1&lt;/P&gt;&lt;P&gt;make[1]: Leaving directory `/home/linux/ESYS-IMP-LINUXAPP-SUF-24092012-V0.01/Internal Release/ESYS-IMP-LinuxApp-SUF-LIB-SRS-V0.01/samples'&lt;/P&gt;&lt;P&gt;make: *** [samples] Error 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what does this mean &lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: skipping incompatible /opt/poky/1.8/sysroots/i686-pokysdk-linux/lib/libgcc_s.so.1 when searching for libgcc_s.so.1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What might be the wrong??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:29:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521437#M84404</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-06-17T10:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521438#M84405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found that the problem is with the dynamically linked libraries. If i use static libraries the application is compiling perfectly.&lt;/P&gt;&lt;P&gt;If i generate my own shared libraray and use it to compile a application then it is giving the below error&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN style="font-weight: bold; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: skipping incompatible /opt/poky/1.8/sysroots/i686-pokysdk-linux/lib/libgcc_s.so.1 when searching for libgcc_s.so.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /lib/libc.so.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /usr/lib/libc_nonshared.a&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;/opt/poky/1.8/sysroots/i686-pokysdk-linux/usr/libexec/arm-poky-linux-gnueabi/gcc/arm-poky-linux-gnueabi/4.9.2/ld: cannot find /lib/ld-linux-armhf.so.3&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Jun 2016 10:20:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521438#M84405</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-06-18T10:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cross-Compiling using makefile</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521439#M84406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I solved my self. I changed the library path and sysroot path then it started working,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--sysroot=/home/fsl-release-bsp/build_image/tmp/sysroots/imx6ulevk&lt;/P&gt;&lt;P&gt;LIBPATH += -L/home/fsl-release-bsp/build_image/tmp/sysroots/imx6ulevk/usr/lib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 05:24:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Cross-Compiling-using-makefile/m-p/521439#M84406</guid>
      <dc:creator>chandraevolute</dc:creator>
      <dc:date>2016-06-20T05:24:14Z</dc:date>
    </item>
  </channel>
</rss>

