If you don't mind changing your source file just once, add something like this:
const volatile static char version[] = VERSION;
and compile with:
gcc -c -DVERSION='"1.2.3"'
The volatile
keeps gcc from removing the string at higher optimization levels.
As written, this won't compile if you forget the -D
option, which may be either good or bad depending on your requirements.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…