Hi,
I'm trying to use Raisonance STM8 compiler with Codeblocks. There is nothing wrong with compilation but in the linking stage, object files must be comma separated and this is where I got stucked. In the advanced compiler options, I'm using $link_objects macro for all object files created in the compilation stage but this gives me space separated object files like;
\Debug\sth.o \Debug\main.o
What the linker wants is;
\Debug\sth.o,\Debug\main.o
If I write all object files manually (with commas) in the command line macro ($linker -P $objects_output_dir\sth.o,$objects_output_dir\main.o, ...), linking is successful. What can I do about this?
Edit: Forgot to say; rev 8500