<?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 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277218#M10309</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MCF54418 I am working on appears to have 64-bit math support in CW 10.3.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tested a lot of 64-bit math and it all appears to work fine.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I am having trouble with using some of the canned 64-bit library functions, e.g. lldiv and llabs&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This isn't a major issue, since these functions can be coerced in other ways, but it would just be cleaner if I could use them and I'm not sure exactly how to enable them.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I can define these structures&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; div_t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ldiv_t&amp;nbsp;&amp;nbsp;&amp;nbsp; ldt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;&amp;nbsp; lldiv_t&amp;nbsp;&amp;nbsp; lldt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;but the &lt;STRONG&gt;lldiv_t&lt;/STRONG&gt; will not compile.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I followed the structure definitions to &lt;STRONG&gt;div_t.h&lt;/STRONG&gt; it appeared that &lt;STRONG&gt;_EWL_LONGLONG&lt;/STRONG&gt; was not defined.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But even when I added&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#define _EWL_LONGLONG 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;to my program it wouldn't build.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also added it to MCF54418.h and MCF54418_sysinit.h with no better luck...&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only place it IS defined is in ansi_params.h, with this block...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;#ifndef _EWL_LONGLONG&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; #if defined(__CWCC__)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #if __option(longlong)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt; #else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt; #endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;#endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't want to change this file since it appears to be somewhat a standard code block, rather than a board-specific one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;So would anyone know where exactly would be the place to define &lt;STRONG&gt;_EWL_LONGLONG&lt;/STRONG&gt;?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jun 2013 20:40:16 GMT</pubDate>
    <dc:creator>stevejanisch</dc:creator>
    <dc:date>2013-06-05T20:40:16Z</dc:date>
    <item>
      <title>64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277218#M10309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MCF54418 I am working on appears to have 64-bit math support in CW 10.3.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tested a lot of 64-bit math and it all appears to work fine.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I am having trouble with using some of the canned 64-bit library functions, e.g. lldiv and llabs&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This isn't a major issue, since these functions can be coerced in other ways, but it would just be cleaner if I could use them and I'm not sure exactly how to enable them.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I can define these structures&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; div_t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; ldiv_t&amp;nbsp;&amp;nbsp;&amp;nbsp; ldt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'courier new', courier;"&gt;&amp;nbsp; lldiv_t&amp;nbsp;&amp;nbsp; lldt ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;but the &lt;STRONG&gt;lldiv_t&lt;/STRONG&gt; will not compile.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I followed the structure definitions to &lt;STRONG&gt;div_t.h&lt;/STRONG&gt; it appeared that &lt;STRONG&gt;_EWL_LONGLONG&lt;/STRONG&gt; was not defined.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But even when I added&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;#define _EWL_LONGLONG 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;to my program it wouldn't build.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also added it to MCF54418.h and MCF54418_sysinit.h with no better luck...&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only place it IS defined is in ansi_params.h, with this block...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;#ifndef _EWL_LONGLONG&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp; #if defined(__CWCC__)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #if __option(longlong)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt; #else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; #define _EWL_LONGLONG&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt; #endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;#endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't want to change this file since it appears to be somewhat a standard code block, rather than a board-specific one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;So would anyone know where exactly would be the place to define &lt;STRONG&gt;_EWL_LONGLONG&lt;/STRONG&gt;?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 20:40:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277218#M10309</guid>
      <dc:creator>stevejanisch</dc:creator>
      <dc:date>2013-06-05T20:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277219#M10310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Hello Steve,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;To have your project working you should first go to menu Project &amp;gt; Properties &amp;gt; C/C++ Build &amp;gt; Settings &amp;gt; Librarian and set the Library Model to c9x. Then include in your file (main.c) the following sequence&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10pt; font-family: Consolas;"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10pt; font-family: Consolas;"&gt;#include&lt;/STRONG&gt; &lt;SPAN style="font-family: Consolas; color: #2a00ff; font-size: 10pt;"&gt;&amp;lt;ansi_parms.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10pt; font-family: Consolas;"&gt;#include&lt;/STRONG&gt; &lt;SPAN style="font-family: Consolas; color: #2a00ff; font-size: 10pt;"&gt;&amp;lt;div_t.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;OR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10pt; font-family: Consolas;"&gt;#include&lt;/STRONG&gt; &lt;SPAN style="font-family: Consolas; color: #2a00ff; font-size: 10pt;"&gt;&amp;lt;arith.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;(&amp;lt;arith.h&amp;gt; includes both &amp;lt;ansi_parms.h&amp;gt; and &amp;lt;div_t.h&amp;gt;).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Carlos&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 15:30:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277219#M10310</guid>
      <dc:creator>Carlos_Musich</dc:creator>
      <dc:date>2013-06-10T15:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277220#M10311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; I'm not sure if what you suggest would work.&amp;nbsp; When I do set library model to c9x I get at least one other link error... &lt;/P&gt;&lt;P&gt;Undefined: "_ctypes_" Referenced from "isdigit" in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure what it is referring to.&amp;nbsp; I don't recognize an "isdigit" function... must be in some library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll do a bit more research since I'm not really sure what the different library models are doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the feedback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 12:42:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277220#M10311</guid>
      <dc:creator>stevejanisch</dc:creator>
      <dc:date>2013-06-17T12:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277221#M10312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've just encountered the same problem you mention in your last post; Undefined : "_ctypes_" Referenced from "isdigit" and "isupper".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the last 2 build errors I have after spending a week porting a large M52259 MCU-based application from CodeWarrior 7.1/MQX 3.2 to CodeWarrior 10.4/MQX 4.0.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the Librarian set to use the "c9x" Model.&amp;nbsp; I wish there was some more info on how the system automatically selects the correct libraries to use after only specifying the ewl library location in the Library Search Paths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps the ewl libraries need to be rebuilt??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jun 2013 12:57:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277221#M10312</guid>
      <dc:creator>gnelly</dc:creator>
      <dc:date>2013-06-21T12:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277222#M10313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bump.&amp;nbsp; I'm getting the exact same failure on a Kinetis K60 build with CW 10.4 and MQX 4.0.1.&amp;nbsp; I was trying to use some 64-bit routines (strtoull()) and ran into the ewl/c9x problem.&amp;nbsp; I just closed a ticket with support regarding the c9x library selection... in fact, it may have been the same Carlos who answered above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm going to open a ticket, I'll report back with what I find.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jul 2013 15:58:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277222#M10313</guid>
      <dc:creator>dmarks_ls</dc:creator>
      <dc:date>2013-07-23T15:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Re: 64-bit Math MCF5441x and CW 10.3 -- _EWL_LONGLONG</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277223#M10314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;If you are using MQX you must r&lt;SPAN style="color: #002060; font-size: 10pt;"&gt;ebuild the PSP library of MCF54418 with c9x library instead of default &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #002060; font-weight: bold;"&gt;C++&lt;/SPAN&gt;&lt;SPAN style="color: #002060;"&gt; library. You can do it by importing the &lt;/SPAN&gt;&lt;SPAN style="color: #002060;"&gt;psp&lt;/SPAN&gt;&lt;SPAN style="color: #002060;"&gt; project of MCF54418TWR from “\\Freescale &lt;/SPAN&gt;&lt;SPAN style="color: #002060; font-weight: bold;"&gt;MQX&lt;/SPAN&gt;&lt;SPAN style="color: #002060;"&gt; 3.8\&lt;/SPAN&gt;&lt;SPAN style="color: #002060;"&gt;mqx&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #002060; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;\build\cw10\psp_twrmcf54418” and checking the option “Enable automatic library configurations” to use “c9x”. Then you can just rebuild it. The new “bsp_twrmcf54418_d.a” will be linked with your project to let you use standard I/O.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 22:32:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/64-bit-Math-MCF5441x-and-CW-10-3-EWL-LONGLONG/m-p/277223#M10314</guid>
      <dc:creator>Carlos_Musich</dc:creator>
      <dc:date>2013-07-24T22:32:40Z</dc:date>
    </item>
  </channel>
</rss>

