При компиляции с gcc 4.7.2 и autoconf 2.69 я обычно получаю результаты, подобные этим, в файле configure.log. Пример:
configure:3091: $? = 0
configure:3080: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files compilation terminated.
configure:3091: $? = 1
configure:3080: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files compilation terminated.
configure:3091: $? = 1
configure:3111: checking whether the C compiler works
configure:3133: gcc -march=x86-64 -mtune=generic -Os -pipe -Wl,-O1 conftest.c >&5
configure:3137: $? = 0
configure:3185: result: yes
Компиляция проходит успешно, но мне интересно, почему autoconf проверяет командные строки, которые не поддерживает gcc. Это для других компиляторов?