Hi,
I am trying to compile a project made with kds200, I used migration tool, and change arm libs.
I got this error below: the same as KDS200, the only solution I found: I make a copy and rename directory.
arm-none-eabi-g++: error: ./SDK/plaform/drivers/src/enet/fsl_enet_driver.o: No such file or directory
instead of:
arm-none-eabi-g++: error: ./SDK/platform/drivers/src/enet/fsl_enet_driver.o: No such file or directory
Do you know any other solution?
Solved! Go to Solution.
Is this on Windows?
If randomly characters get removed in the link phase (command line passed to the linker), then this is a sign that you execeed that magical 8192 character limit on Windows.
If this is the case, then I recommend that you have a read here:
Solving the 8192 Character Command Line Limit on Windows | MCU on Eclipse
which proposes to use an updated make utility.
I hope this helps,
Erich
Is this on Windows?
If randomly characters get removed in the link phase (command line passed to the linker), then this is a sign that you execeed that magical 8192 character limit on Windows.
If this is the case, then I recommend that you have a read here:
Solving the 8192 Character Command Line Limit on Windows | MCU on Eclipse
which proposes to use an updated make utility.
I hope this helps,
Erich
Thanks Erich!!