<?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>S32 Design StudioのトピックRe: build error: unrecognized option '-T'</title>
    <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778248#M3002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Do I need to commit (in git) the args file as well?&lt;/P&gt;&lt;P&gt;Is there a gitignore file for s32 Design studio?&lt;/P&gt;&lt;P&gt;Does Design studio come wioth sopme sort of git integration ? So eclipse automatically knows what to add to git repository?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Jun 2018 08:17:52 GMT</pubDate>
    <dc:creator>momo12</dc:creator>
    <dc:date>2018-06-13T08:17:52Z</dc:date>
    <item>
      <title>build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778246#M3000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have put my S32K project under git. Each time I switch branches in GIT, I get this build error:&lt;/P&gt;&lt;P&gt;/../arm-none-eabi/bin/ld.exe: unrecognized option '-T'&lt;/P&gt;&lt;P&gt;In order to fix it, I have to a combination of these steps. After 10-20 trials of repeating the below steps in random order, the build error is gone. And I can build my branch again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- clean up untracked files in git&lt;/P&gt;&lt;P&gt;- refresh project in eclipse&lt;/P&gt;&lt;P&gt;- build again and again&lt;/P&gt;&lt;P&gt;- clean project in eclipse&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is going on here? What would be the correct order?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 07:37:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778246#M3000</guid>
      <dc:creator>momo12</dc:creator>
      <dc:date>2018-06-13T07:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778247#M3001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the -T linker otion specifies linker script file. In the .args file (located in project's Debug folder) should be path to existing linker script - for example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;-T "C:/NXP/S32DS_ARM_v2018.R1/S32DS/S32SDK_S32K14x_BETA_1.9.0/platform/devices/S32K144/linker/gcc/S32K144_64_flash.ld"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file doesn't exist - there is empty path after -T and linker can't continue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 08:06:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778247#M3001</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-06-13T08:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778248#M3002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Do I need to commit (in git) the args file as well?&lt;/P&gt;&lt;P&gt;Is there a gitignore file for s32 Design studio?&lt;/P&gt;&lt;P&gt;Does Design studio come wioth sopme sort of git integration ? So eclipse automatically knows what to add to git repository?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 08:17:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778248#M3002</guid>
      <dc:creator>momo12</dc:creator>
      <dc:date>2018-06-13T08:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778249#M3003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The .args file is auto-generated and there is no reason to put it in git. In my opinion in your case was some issue with linker script - may be wrong path to script or the .ld file was not checked out properly from git.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About eclipse git plugin - I'm not much familiar with it. But it is standard eclipse plugin and you can find more info in eclipse forum. S32DS is released without GIT plugin.&amp;nbsp; You need to install it manually.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 08:21:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778249#M3003</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-06-13T08:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778250#M3004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this maybe a &lt;STRONG&gt;bug in S32 Design Studio for ARM?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same issue using&amp;nbsp;&lt;STRONG&gt;S32 SDK 3.0.1&lt;/STRONG&gt; and &lt;STRONG&gt;Design Studio for ARM 2018.R1 Build id: 180815&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="S32DS_error.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/86689iC4F421C755B14CEE/image-size/large?v=v2&amp;amp;px=999" role="button" title="S32DS_error.png" alt="S32DS_error.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Furthermore the main issue is that you &lt;STRONG&gt;are not able to correct the empty -T parameter (-T "") value&lt;/STRONG&gt;, because the given box is &lt;STRONG&gt;grayed out&lt;/STRONG&gt; and is &lt;STRONG&gt;not editable.&lt;/STRONG&gt; Or is there another location/option somewhere in Design Studio where&amp;nbsp;you&amp;nbsp;can specify the full path to the script file (S32K142_32_flash.ld)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Tibor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Aug 2019 11:42:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778250#M3004</guid>
      <dc:creator>tibor_bekesi</dc:creator>
      <dc:date>2019-08-10T11:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778251#M3005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my opinion this is a bug.&lt;/P&gt;&lt;P&gt;eclipse/design studio file ".cproject" gets corrupted some times&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to reproduce:&lt;/P&gt;&lt;P&gt;regenerate code again and again. This is a statistical bug.&lt;/P&gt;&lt;P&gt;Workaround: put every thing in git and commit ".cproject". regenerate code, incase you run into this bug, revert this file. Every thing should be fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2019 09:49:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778251#M3005</guid>
      <dc:creator>momo12</dc:creator>
      <dc:date>2019-08-12T09:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778252#M3006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can specify linker path in linker general options:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/87064i74AFC49878EF5308/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to reproduce the issue, but no success. Is path to linker script specified in settings in your project?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2019 10:52:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778252#M3006</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2019-08-12T10:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778253#M3007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your support and sorry for my late reply.&lt;/P&gt;&lt;P&gt;Yes, path to linker script file is specified as follows:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/89044iA057F3E66E7EEF2C/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And here you are&amp;nbsp;my Processor Expert options as well:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/89076i6DC67DE02EA9DC69/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However I do&amp;nbsp;NOT see&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;STRONG&gt;S32K142_32_flash.ld&lt;/STRONG&gt; linked resource under my &lt;STRONG&gt;Generated_Code&lt;/STRONG&gt; folder:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/89127i35B085EC3B13A2BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Even if I modify the path to the linker script file, the -T option still remains empty double quotes (-T "").&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Tibor&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2019 08:51:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778253#M3007</guid>
      <dc:creator>tibor_bekesi</dc:creator>
      <dc:date>2019-08-23T08:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778254#M3008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tibor,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;normally is linker script located in Project_settings folder:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/89048i7460BF887E6D0DA3/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you started your project from scratch or did you reuse some example project?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2019 12:54:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778254#M3008</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2019-08-23T12:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: build error: unrecognized option '-T'</title>
      <link>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778255#M3009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I know that in the example projects usually the linker scripts are located under &lt;STRONG&gt;Project_Settings&lt;/STRONG&gt; folder.&lt;/P&gt;&lt;P&gt;However, in my case it should reside in &lt;STRONG&gt;Generated_Code&lt;/STRONG&gt; folder if I understand correctly the Processor Expert configuration of my project (see screenshot in my previous comment).&lt;/P&gt;&lt;P&gt;In fact&amp;nbsp;&lt;STRONG style="color: #51626f; border: 0px; font-weight: bold;"&gt;S32K1xx_flash.ld&lt;/STRONG&gt; is missing under&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Generated_Code&lt;/STRONG&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;folder.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The project that I am working on (GEN_s32k142) was created earlier by one of my colleagues, I only took it over and checked it out from a&amp;nbsp;Git repository.&lt;/P&gt;&lt;P&gt;The question is how to correct the empty value at the -T option now?&lt;/P&gt;&lt;P&gt;I already tried&amp;nbsp;to add that missing linked resource to my project manually referencing to the following absolute path:&lt;/P&gt;&lt;P&gt;"C:\NXP\S32DS_ARM_v2018.R1\S32DS\S32SDK_S32K1xx_RTM_3.0.0\platform\devices\S32K142\linker\gcc\S32K142_32_flash.ld"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it &lt;STRONG&gt;did not&amp;nbsp;solve my problem&lt;/STRONG&gt; and the&lt;STRONG&gt; -T option is still empty.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would be curious how can I somehow force Design Studio to regenerate the missing linked resource &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;STRONG style="color: #51626f; border: 0px; font-weight: bold;"&gt;S32K1xx_flash.ld)&lt;/STRONG&gt;&amp;nbsp;?&lt;/P&gt;&lt;P&gt;And after all how to&amp;nbsp;achieve&amp;nbsp;that the empty value of -T option gets corrected (either manually or automatically)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Tibor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2019 13:49:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-Design-Studio/build-error-unrecognized-option-T/m-p/778255#M3009</guid>
      <dc:creator>tibor_bekesi</dc:creator>
      <dc:date>2019-08-23T13:49:41Z</dc:date>
    </item>
  </channel>
</rss>

