<?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中的主题 emWin on LPC4357 with Gnu and floating point</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/emWin-on-LPC4357-with-Gnu-and-floating-point/m-p/515198#M1064</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by hlsa on Wed Apr 17 03:35:41 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;P&gt;I would like to use the emWin library together with the LPC4357 using the GNU 4.6.2 toolchain. Therefore I added the precompiled library "libemWin_518_LPCXpresso501_M4_LE_Redlib.a" to the linker arguments. However, the linker now provides the following output:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;ld.exe: error: output.elf uses VFP register arguments, C:\Lpc4357_MCB4300\libemWin_518_LPCXpresso501_M4_LE_Redlib.a(GUI_Alloc.o) does not&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Probably the library has been compiled with the software floating point option "-mfloat-abi=soft". However, I need to use hardware floating point for my own code ("-mfloat-abi=hard").&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;How can I get the emWin library running with hardware floating point?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Holger&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 17:18:10 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T17:18:10Z</dc:date>
    <item>
      <title>emWin on LPC4357 with Gnu and floating point</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/emWin-on-LPC4357-with-Gnu-and-floating-point/m-p/515198#M1064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by hlsa on Wed Apr 17 03:35:41 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;P&gt;I would like to use the emWin library together with the LPC4357 using the GNU 4.6.2 toolchain. Therefore I added the precompiled library "libemWin_518_LPCXpresso501_M4_LE_Redlib.a" to the linker arguments. However, the linker now provides the following output:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;ld.exe: error: output.elf uses VFP register arguments, C:\Lpc4357_MCB4300\libemWin_518_LPCXpresso501_M4_LE_Redlib.a(GUI_Alloc.o) does not&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Probably the library has been compiled with the software floating point option "-mfloat-abi=soft". However, I need to use hardware floating point for my own code ("-mfloat-abi=hard").&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;How can I get the emWin library running with hardware floating point?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Holger&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:18:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/emWin-on-LPC4357-with-Gnu-and-floating-point/m-p/515198#M1064</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: emWin on LPC4357 with Gnu and floating point</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/emWin-on-LPC4357-with-Gnu-and-floating-point/m-p/515199#M1065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Wouter on Fri Apr 19 02:41:49 MST 2013&lt;/STRONG&gt;&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;The GCC emWin libraries are compiled with default -mfloat-abi value. Compiling/linking your project with option "-mfloat-abi=softfp" should solve the linker issue. Note that option "-mfloat-abi=softfp" still uses the FPU, only the calling convention is different from "-mfloat-abi=hard". See: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fgcc.gnu.org%2Fonlinedocs%2Fgcc%2FARM-Options.html" rel="nofollow" target="_blank"&gt;http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Wouter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 17:18:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/emWin-on-LPC4357-with-Gnu-and-floating-point/m-p/515199#M1065</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T17:18:11Z</dc:date>
    </item>
  </channel>
</rss>

