<?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>LPC MicrocontrollersのトピックRe: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519699#M3299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Mon Dec 17 19:51:32 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm aware that they have the files (and I'd probably be able to extract the files from their archive, but as I am writing my own toolchain, which I hope to release later on, I don't think they would be amused that I included their work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Still, I'll try and make my toolchain optional, so that people can freely choose their toolchain with my software.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 17:39:21 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T17:39:21Z</dc:date>
    <item>
      <title>[Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519693#M3293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Fri Nov 30 08:34:42 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I've built my own toolchain, and cloned sw.lpcware.com to try out some examples on the LPC1768.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have an adapter board with a LPC1768 and the bare minimum components necessary as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After making a lot of adjustments, customizing the makeconfig file and recompiling the toolchain, I finally got it to build LedBlinky with one minor exception.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-- (For anyone passing by, who wants the configuration file) --&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# File: makeconfig&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;PROJ_ROOT=${HOME}/Files/Sources/ARM/LPC/lpc175x_6x&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DEVICE=LPC17xx&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MANUFACTURE=NXP&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TOOL =gnu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DEBUG_MODE=1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TOOLS_PATH =&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GNU_INSTALL_ROOT=/usr/local/arm-none-eabi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GNU_VERSION=4.7.2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-- End of configuration file --&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the following error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/usr/local/arm-none-eabi/lib/gcc/arm-none-eabi/4.7.2/../../../../arm-none-eabi/bin/ld: cannot find -lcs3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/usr/local/arm-none-eabi/lib/gcc/arm-none-eabi/4.7.2/../../../../arm-none-eabi/bin/ld: cannot find -lcs3unhosted&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;/usr/local/arm-none-eabi/lib/gcc/arm-none-eabi/4.7.2/../../../../arm-none-eabi/bin/ld: cannot find -lcs3micro&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;collect2: error: ld returned 1 exit status&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;make: *** [rom] Error 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As far as I can figure out, the linker script located here is used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;lpc175x_6x/makesection/makerule/example/ldscript_rom_gnu.ld&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It contains the following line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GROUP(-lgcc -lc -lcs3 -lcs3unhosted -lcs3micro)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;...Now, I believe I'm missing some files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In theory: Shouldn't those files be included with the sources somewhere, as they are not created when building a toolchain ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do find it a bit strange, that sources provided by NXP, will require you to use files from a third-party.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(When I distribute programs and source, I usually make sure that people don't need any extra files).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, my actual question is: How do I get the missing files ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519693#M3293</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519694#M3294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Lien.Nguyen on Sun Dec 02 19:32:00 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I installed CodeSourcery toolchain and found these files are in [CodeSoucery folder]/arm-none-eabi/lib/thumb2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Lien&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519694#M3294</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519695#M3295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by eosis on Wed Dec 05 06:08:42 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you planning to release the toolchain you have made?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519695#M3295</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519696#M3296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by mburton on Mon Dec 10 15:22:05 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Pacman,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may be interested in this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Fbugtrackerissue%2Flpc1758-load-script-and-startup-code-use-gcc-462-and-libnosys" rel="nofollow" target="_blank"&gt;http://www.lpcware.com/content/bugtrackerissue/lpc1758-load-script-and-startup-code-use-gcc-462-and-libnosys&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's based around an earlier version of gcc but should still be relevant.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519696#M3296</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519697#M3297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Mon Dec 17 19:45:42 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, but not until it's ready. I don't want other people to go through all those problems I had myself. ;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519697#M3297</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519698#M3298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Mon Dec 17 19:46:58 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much. I'll take a closer look at this one. :)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519698#M3298</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: [Linux/UNIX] Link error: cannot find -lcs3 -lcs3unhosted -lcs3micro</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519699#M3299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Pacman on Mon Dec 17 19:51:32 MST 2012&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm aware that they have the files (and I'd probably be able to extract the files from their archive, but as I am writing my own toolchain, which I hope to release later on, I don't think they would be amused that I included their work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Still, I'll try and make my toolchain optional, so that people can freely choose their toolchain with my software.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:39:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Linux-UNIX-Link-error-cannot-find-lcs3-lcs3unhosted-lcs3micro/m-p/519699#M3299</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:39:21Z</dc:date>
    </item>
  </channel>
</rss>

