<?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: Output of assembler file when compile in LPCXpresso IDE</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586439#M27192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by TheFallGuy on Mon Mar 10 05:05:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;You must enter exactly what you were told - the commas are significant, So you need to add this&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
-c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -Wa,-a,-ad="$*.lst"
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 01:20:23 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T01:20:23Z</dc:date>
    <item>
      <title>Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586434#M27187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by shiggy on Sat Mar 08 22:01:37 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi All!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When compliling the C file by LPCXpresso, I want&amp;nbsp; to get the assembler file(xxxx.s).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Q1) Please tell me the procedure for LPCXpresso.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you give me the answer, I am very happy.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shiggy&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586434#M27187</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586435#M27188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Sat Mar 08 22:16:52 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Try:&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.support.code-red-tech.com%2FCodeRedWiki%2FPostProcessApp" rel="nofollow" target="_blank"&gt;http://www.support.code-red-tech.com/CodeRedWiki/PostProcessApp&lt;/A&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586435#M27188</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586436#M27189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Sun Mar 09 02:54:43 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want an assembler listing you can go to Quick start panel -&amp;gt; Edit project settings -&amp;gt; MCU C Compiler -&amp;gt; Miscelaneous and add&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
 -Wa,-a,-ad="$*.lst"
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt; to the "Other flags" field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;'-Wa,': These are options for the assembler&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'-a': generate a listing file&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'-ad': Don't generate listing for debug info&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'="$*.lst"': The file name for the listing file, like the .c file name but with .lst suffix&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are some more options to specify output, you can look them up in the man page for the GNU assembler.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The listing will appear in the build subdirectory, e.g. "Debug".&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586436#M27189</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586437#M27190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Sun Mar 09 04:55:36 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Fastest option:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Right click on your AXF file in Project Explorer-&amp;gt;YourProjectName-&amp;gt;Binaries&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Select Binary Utilities-&amp;gt;Disassemble&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586437#M27190</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586438#M27191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by shiggy on Sun Mar 09 23:28:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks your quck and kind answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have opnend the miscellaneous section by followings.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;|Quickstat panel|Buildsettings|View build options for "my profect name"|C/C++ build|Settings|&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ToolSelectTAB|Miscellaneous|&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to add as followling.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -&lt;/SPAN&gt;&lt;STRONG&gt;Wa -a -ad="$*.lst"&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If there is something wrong, please tell me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Because this is my my first experience. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shiggy&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shiggy&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586438#M27191</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Output of assembler file when compile</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586439#M27192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by TheFallGuy on Mon Mar 10 05:05:58 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;You must enter exactly what you were told - the commas are significant, So you need to add this&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
-c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -Wa,-a,-ad="$*.lst"
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:20:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Output-of-assembler-file-when-compile/m-p/586439#M27192</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:20:23Z</dc:date>
    </item>
  </channel>
</rss>

