Please note: We are aware of an issue affecting replies on the Arm Community forums, which may not be loading as expected.
We apologize for any inconvenience and appreciate your patience while we investigate and work to resolve the issue.
Thank you for your understanding.
I am trying to run a Python script as my build command:
python ${ProjDirPath}/make_wrapper.py
From within my Python script, I call the make with the two arguments:
To provide more background: I am trying to use a script type that works on both Windows and Linux. It works fine on Windows with a .bat substituted for the .py file.
The issue seems to be that the IDE is treating "python" as the executable and the "make_wrapper.py" as an argument instead of executing the .py file using the Python interpreter.