I got a configure script file that originally will create some CFLAGS
when doing ./configure
. I am wondering how can we append some other CFLAGS
when doing ./configure
without changing the original CFLAGS
like:
./configure CFLAGS+="some flags"
Above is not the correct way to append so I am wondering what would be the best way to append.
./configure CFLAGS="your flags"
should do the right thing, adding any flags./configure
determines to be necessary. Could you try that? – Stephen Kitt Sep 30 '21 at 06:29