In trying to build the example code as described in the "Software examples getting started" video, I'm experiencing a strange issue with this line in the generated make file:
arm-none-eabi-gcc -nostdlib -L"C:\Users\thisUser\Documents\LPCXpresso_8.2.2_650\workspace\PN7462AU\phHal\phhalRf\lib" -Xlinker -Map="PN7462AU_ex_phExMain.map" -Xlinker --gc-sections -mcpu=cortex-m0 -mthumb -T "PN7462AU_ex_phExMain_DebugPN7462AU.ld" &Heap:Default;Post Data;Default&Stack:Default;End;Default -o "PN7462AU_ex_phExMain.axf" $(OBJS) $(USER_OBJS) $(LIBS)
The errors I'm getting are listed below:
Building target: PN7462AU_ex_phExMain.axf
Invoking: MCU Linker
<Same line as earlier, but with the $(OBJS), $(USER_OBJS) etc replaced with lists - if this info is important, I can post it.>
/bin/sh: Heap:Default: command not found
/bin/sh: Post: command not found
/bin/sh: Default: command not found
c:/nxp/lpcxpresso_8.2.2_650/lpcxpresso/tools/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/bin/ld.exe: warning: cannot find entry symbol ResetISR; defaulting to 00203000/bin/sh: Stack:Default: command not found
/bin/sh: End: command not found
/bin/sh: Default: command not found
make: *** [PN7462AU_ex_phExMain.axf] Error 127
I'm having a hard time tracking down what is wrong with this line.. Any idea what I'm doing wrong?