This question may be pretty simple, but i dont find exact answers ..
in shell script i have a line like this,
export CFLAGS=" -w -Iinc/ -Isrc/"
I dont know what is that -w and -I options doing here??
All i know is this line includes the directories inc and src
Any help would be great
This just sets an environment variable. I’m guessing that it gets used to set flags for GCC.
From
man gcc: