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가 지원하지 않는 명령 줄을 테스트하는 이유가 궁금합니다. 다른 컴파일러의 경우입니까?