<?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: Linker fails for math functions in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1557429#M15813</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can you tell us the part number of DSC? which tools do you use, Codewarrior for DSP56800E ver8.3 or CodeWarrior for MCU ver11.x? which api function did you call which leads to the error message?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Nov 2022 02:59:38 GMT</pubDate>
    <dc:creator>xiangjun_rong</dc:creator>
    <dc:date>2022-11-22T02:59:38Z</dc:date>
    <item>
      <title>Linker fails for math functions</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1556648#M15812</link>
      <description>&lt;P&gt;Using CD 10.7 on MV56F8000-EVK.&lt;/P&gt;&lt;P&gt;Linker is failing for a missing number of math functions:&amp;nbsp; undefined : "FARTDIVF64Z", Undefined : "FARTF32_TO_F64", Undefined : "FARTGTF64", Undefined : "FARTLTF64".&amp;nbsp; I suppose I am missing library. Can someone direct how to resolve?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 21:19:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1556648#M15812</guid>
      <dc:creator>pgillaspy</dc:creator>
      <dc:date>2022-11-18T21:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Linker fails for math functions</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1557429#M15813</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Can you tell us the part number of DSC? which tools do you use, Codewarrior for DSP56800E ver8.3 or CodeWarrior for MCU ver11.x? which api function did you call which leads to the error message?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 02:59:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1557429#M15813</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2022-11-22T02:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Linker fails for math functions</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1557951#M15814</link>
      <description>&lt;P&gt;I am using CodeWarrior 10.7 with DSC Quickstart 2.7.3. If you will notice, all of the unresolved math functions are type conversions.&lt;/P&gt;&lt;P&gt;The source code line:&lt;/P&gt;&lt;P&gt;Valid_3p3V = DIO_ON;&lt;/P&gt;&lt;P&gt;corresponds to linker error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Undefined :: "FARTF32_TO_F64"&amp;nbsp;&lt;/P&gt;&lt;P&gt;which makes no sense since Valid_3p3V is of type DIO_States_t enumeration of which DIO_ON (=1) is a specific enumeration value.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 17:50:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1557951#M15814</guid>
      <dc:creator>pgillaspy</dc:creator>
      <dc:date>2022-11-22T17:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Linker fails for math functions</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1558137#M15815</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have tried the following code with CodeWarrior for MCU ver11.x.&lt;/P&gt;
&lt;P&gt;typedef enum WEEK&lt;BR /&gt;{&lt;BR /&gt;Monday=0,&lt;BR /&gt;Thirsday,&lt;BR /&gt;Wednesday&lt;BR /&gt;};&lt;BR /&gt;enum WEEK day;&lt;BR /&gt;void main(void)&lt;BR /&gt;{&lt;BR /&gt;/* Write your local variable definition here */&lt;/P&gt;
&lt;P&gt;/*** Processor Expert internal initialization. DON'T REMOVE THIS CODE!!! ***/&lt;BR /&gt;PE_low_level_init();&lt;BR /&gt;/*** End of Processor Expert internal initialization. ***/&lt;/P&gt;
&lt;P&gt;/* Write your code here */&lt;BR /&gt;day=Thirsday;&lt;/P&gt;
&lt;P&gt;for(;;) {}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;I can compile/link successfully.&lt;/P&gt;
&lt;P&gt;Regarding your code, I think it may be related to the variable name characters. Pls try to use standard variable name.&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 03:27:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1558137#M15815</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2022-11-23T03:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Linker fails for math functions</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1560856#M15818</link>
      <description>&lt;P&gt;I had the following language option for the compiler:&amp;nbsp; -flag slld&amp;nbsp; which I thought was necessary in order to use bool data type. But option -dialect c99 is sufficient.&lt;/P&gt;&lt;P&gt;Removing that option eliminated the errors.&amp;nbsp; Consider this case solved.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 21:23:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Linker-fails-for-math-functions/m-p/1560856#M15818</guid>
      <dc:creator>pgillaspy</dc:creator>
      <dc:date>2022-11-28T21:23:47Z</dc:date>
    </item>
  </channel>
</rss>

