Cannot run program "": Launching failed, Error: Program "" not found in PATH

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Cannot run program "": Launching failed, Error: Program "" not found in PATH

2,337 Views
pahanela
Contributor II

While trying to build the project with MCUXpresso v11.1.1, I get the following error:

13:40:09 **** Incremental Build of configuration Debug Build for project EOS_K8x ****
Info: Internal Builder is used for build
arm-none-eabi-size EOS_K8x.axf
text data bss dec hex filename
124408 1548 118860 244816 3bc50 EOS_K8x.axf
#checksum -p MK80FN256xxx15 -d EOS_K8x.axf
Cannot run program "": Launching failed

Error: Program "" not found in PATH
PATH=[C:\nxp\MCUXpressoIDE_11.1.1_3241\ide\plugins\com.nxp.mcuxpresso.tools.win32_11.1.0.202001081728\tools\bin;C:\nxp\MCUXpressoIDE_11.1.1_3241\ide\plugins\com.nxp.mcuxpresso.tools.win32_11.1.0.202001081728\buildtools\bin;C:\nxp\MCUXpressoIDE_11.1.1_3241\ide\plugins\com.nxp.mcuxpresso.tools.bin.win32_11.1.0.202002241259\binaries\;C:/nxp/MCUXpressoIDE_11.1.1_3241/ide/jre/bin/server;C:/nxp/MCUXpressoIDE_11.1.1_3241/ide/jre/bin;C:/nxp/MCUXpressoIDE_11.1.1_3241/ide/jre/lib/amd64;C:\Python\Scripts\;C:\Python\;C:\Users\p.kostrytsia\AppData\Local\Programs\Python\Python38\Scripts\;C:\Users\p.kostrytsia\AppData\Local\Programs\Python\Python38\;C:\Python\Python38\Scripts\;C:\Python\Python38\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin\;C:\Program Files\IVI Foundation\VISA\Win64\Bin\;C:\Program Files (x86)\IVI Foundation\VISA\WinNT\Bin;C:\Program Files\doxygen\bin;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\PuTTY\;C:\Program Files\Git\cmd;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\GNU Tools ARM Embedded\8 2019-q3-update\bin;C:\Users\p.kostrytsia\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Telerik\Fiddler;C:\Users\p.kostrytsia\AppData\Local\Microsoft\WindowsApps;C:\Program Files\JetBrains\PyCharm Community Edition 2019.1.1\bin;;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;;C:\nxp\MCUXpressoIDE_11.1.1_3241\ide]

Info: Parallel threads used: 0

13:40:26 Build Failed. 1 errors, 0 warnings. (took 16s.993ms)

However, I don't observe this behavior with MCUXpresso v10.3.1:

13:46:17 **** Incremental Build of configuration Debug Build for project EOS_K8x ****
Info: Internal Builder is used for build
Info: Parallel threads used: 0

13:46:40 Build Finished (took 22s.737ms)

How to fix the problem with the new version?

Tags (1)
0 Kudos
2 Replies

2,139 Views
FelipeGarcia
NXP Employee
NXP Employee

Hello Pavlo,

 

In the community thread below it is mentioned this issue could be related to the 8192 characters limitation on Windows. Could you please try the solution provided and see if the issue persists?

 

Error : Program "" not found in PATH 

 

Hope it helps!

 

Have a great day,
Felipe

-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!

- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------

0 Kudos

2,139 Views
pahanela
Contributor II

Hi Felipe,

Thank you for your response. I have removed checksum operation (commenting it with # didn't help, though) in the Properties - C/C++ Build - Settings - Build steps - Post-build steps - Command in the following way:

  • Before
arm-none-eabi-size ${BuildArtifactFileName}
checksum -p ${TargetChip} -d ${BuildArtifactFileName}
arm-none-eabi-objcopy -v -O binary ${BuildArtifactFileName} ${BuildArtifactFileBaseName}.bin
  • After

arm-none-eabi-size ${BuildArtifactFileName}
arm-none-eabi-objcopy -v -O binary ${BuildArtifactFileName} ${BuildArtifactFileBaseName}.bin

It helped to get through the build process without odd results. However, now I am experiencing another issue (Error "Break at address "0x1c00520e" with no debug information available, or outside of program code... )

Most likely it is unrelated.

0 Kudos