<?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: environment mystery in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181602#M6178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you to you both.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The interesting thing is that not only did this work, there were no errors. For some reason, maker.exe just does not like being invoked in the "bare" cmd shell.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Feb 2011 05:13:59 GMT</pubDate>
    <dc:creator>rlw</dc:creator>
    <dc:date>2011-02-11T05:13:59Z</dc:date>
    <item>
      <title>environment mystery</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181599#M6175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using CW 5.0 for S12X.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One of the tools that came with CW is maker.exe, which I use to run my own make files. I am encountering some kind of environmental issue that eludes me and my co-workers. Since the issue involves a 3rd party IDE, I first tried posting to their forum. Noone their was able to help. Maybe someone here might have an useful idea.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My make file is included as an attachment to this post. (I had to change the extension from .mak to .txt to get it accepted by the forum system, here.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following to invoke the make file from the directory it resides in:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Freescale\CodeWarrior_for_S12X_V5_0\Prog\maker.exe "Pod.mak" all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run this command from a Wondows Cmd prompt, nothing happens, not even any error messages. Nothing gets compiled, linked or otherwise built.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run this command from inside the 3rd IDE, it works as expected, compiling all the source files and linking the ABS file, which I can then successfuly program into my target and successfully run.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have carefully compared the 2 environments, including using the set command to list the values of all the environment variebles. I even tried setting all the environment variables set within the IDE's command shell, but even that did not get the make file to run as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At this point, I am considering porting my make file to another version of make and using that instead of maker.exe, but I would really prefer to get this working with maker.exe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Feb 2011 13:33:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181599#M6175</guid>
      <dc:creator>rlw</dc:creator>
      <dc:date>2011-02-05T13:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: environment mystery</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181600#M6176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maker.exe is probably issuing errors so that is why you can't get your project built. This tool (in fact all the build tools from Freescale for S12/S08/RS08) does _not_ dump any output when ran from the command line. To be frank I don't know why this is so, but anyway. To get the output you can use the piper utility, located in the same folder as maker.exe (CW_INSTALL\prog). Just prefix your command line with piper.exe. In your case, this would be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="'courier new', courier"&gt;C:\Freescale\CodeWarrior_for_S12X_V5_0\Prog\piper.exe&amp;nbsp;C:\Freescale\CodeWarrior_for_S12X_V5_0\Prog\maker.exe "Pod.mak" all&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An alternative would be using the maker GUI. Simply launch maker.exe with no arguments (or double click it) and provide your command in the command bar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Feb 2011 14:24:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181600#M6176</guid>
      <dc:creator>NavidadRedivivu</dc:creator>
      <dc:date>2011-02-05T14:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: environment mystery</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181601#M6177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use:&lt;/P&gt;&lt;P&gt;C:\Freescale\CodeWarrior_for_S12X_V5_0\Prog\piper.exe C:\Freescale\CodeWarrior_for_S12X_V5_0\Prog\maker.exe "Pod.mak" all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using piper.exe first will show the output of the maker.exe in cmd.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Feb 2011 14:44:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181601#M6177</guid>
      <dc:creator>CompilerGuru</dc:creator>
      <dc:date>2011-02-05T14:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: environment mystery</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181602#M6178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you to you both.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The interesting thing is that not only did this work, there were no errors. For some reason, maker.exe just does not like being invoked in the "bare" cmd shell.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Feb 2011 05:13:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/environment-mystery/m-p/181602#M6178</guid>
      <dc:creator>rlw</dc:creator>
      <dc:date>2011-02-11T05:13:59Z</dc:date>
    </item>
  </channel>
</rss>

