Hello!
I am using C::B v. Release 8.02 under Windows and Linux.
In my project I add some defines in Project properties/Build options/Compiler settings/#defines
_MY_STRINGISE(name)=#name
MY_STRINGISE(name)=_MY_STRINGISE(name)
Under Window/MinGW compiling is successfull, but under Linux/gcc I get an error:
g++ -D_MY_STRINGISE(name)=#name -DMY_STRINGISE(name)=_MY_STRINGISE(name) ...
/bin/bash: -c: line 0: syntax error near unexpected token `('
It seems as the bash (sh) get wrong argument, I think it is need arguments to be quoted, like "-D...", but I can't found any option in C::B settings controling this.
Anybody knows solution for this problem?