Hi my c code need to consider block of code depending on
#if <condition>
//code block to execute if conditions matches
#endif
Now problem is in my shell script which I run before I compile c code I set ML_ARCH=r8. I can do check in Makefile as below:
ifeq ($(ML_ARCH), r8)
endif
But for C code how to compare variable against string which is mix of char and number, in preprocessor #if