I have a BuildEnv based Makefile build which is configured to use a specific toolchain.
The Makefile uses the compiler command:
COMPILER_EXE = arm-none-eabi-gcc
& path environment has been set such that the correct toolchain's arm-none-eabi-gcc is used.
I want to use Design Studio for ease of compile/test/rework.
I have imported the Makefile without issue but the build fails as -lc cannot be found.
I hope that this issue will be resolved once I point Design Studio at my toolchain.
I cannot figure out the toolchain editor (Properties->C/C++ Builder->Tool Chain Editor)
In order of bests solutions, how would I:
(1) Select my Tool Chain folder using project configurations?
(2) Modifying Windows path
I don't want to edit the Makefile (specify full path) as this is the controlled formal build & it would be frowned on.
Also if anyone knows how to remove the -lc error. I have not specified a 'c' library as far as I can see.
Thanks