문제

How to check the installed gcc has any of the flags enabled in configuration.

E.g. I want to check if installed gcc has this "--enable-__cxa_atexit" flag enabled ?

I have Ubuntu 12.04 & gcc 4.6

도움이 되었습니까?

해결책

Run gcc --version -v. It will output the configure invocation.

다른 팁

Have you tried this one:

gcc -Q --help=target -march=native

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top