8

我试图找出为 GCC 启用了哪些编译器选项(4.7.3,Mac OS X 10.6.8 上的 Macports 安装)。我知道以下方法:

  1. 按照GCC 4.3.3 编译器选项的建议,将 -Q 选项与一个简单的输入文件一起使用:

    gcc -Q -v -o hello hello.c
    
  2. 使用 -Q --help=x 组合(有关 x 的值,请参阅GCC 文档),例如:

    gcc -Q --help=target
    
  3. 要查看启用的定义:

    echo "" | gcc -E -dM - | sort
    

但是,当我使用相同的优化选项集运行方法 1 和 2 时,我会得到两组不同的启用/禁用选项。

$ gcc -Q -v -O3 -march=native -o hello hello.c

GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
options passed:  -v -D__DYNAMIC__ hello.c -march=corei7-avx -mcx16 -msahf
-mno-movbe -maes -mpclmul -mpopcnt -mno-abm -mno-lwp -mno-fma -mno-fma4
-mno-xop -mno-bmi -mno-bmi2 -mno-tbm -mavx -mno-avx2 -msse4.2 -msse4.1
-mno-lzcnt -mno-rdrnd -mno-f16c -mno-fsgsbase --param l1-cache-size=32
--param l1-cache-line-size=64 --param l2-cache-size=6144 -mtune=corei7-avx
-fPIC -mmacosx-version-min=10.6.8 -O3
options enabled:  -Wnonportable-cfstrings -fPIC -falign-labels
-fasynchronous-unwind-tables -fauto-inc-dec -fbranch-count-reg
-fcaller-saves -fcombine-stack-adjustments -fcommon -fcompare-elim
-fcprop-registers -fcrossjumping -fcse-follow-jumps -fdebug-types-section
-fdefer-pop -fdelete-null-pointer-checks -fdevirtualize -fearly-inlining
...

然而

$ gcc -Q -O3 -march=native --help=optimizers

-falign-functions                   [enabled]
-falign-jumps                       [enabled]
-falign-labels                      [enabled]
-falign-loops                       [enabled]
-fasynchronous-unwind-tables        [enabled]
-fbranch-count-reg                  [enabled]
-fbranch-probabilities              [disabled]
-fbranch-target-load-optimize       [disabled]
-fbranch-target-load-optimize2      [disabled]
-fbtr-bb-exclusive                  [disabled]
-fcaller-saves                      [enabled]
-fcombine-stack-adjustments         [enabled]
-fcommon                            [enabled]
-fcompare-elim                      [enabled]
-fconserve-stack                    [disabled]
-fcprop-registers                   [enabled]
-fcrossjumping                      [enabled]
-fcse-follow-jumps                  [enabled]
-fcx-fortran-rules                  [disabled]
-fcx-limited-range                  [disabled]
-fdata-sections                     [disabled]
-fdce                               [enabled]
-fdefer-pop                         [enabled]
-fdelayed-branch                    [disabled]
-fdelete-null-pointer-checks        [enabled]
-fdevirtualize                      [enabled]
-fdse                               [enabled]
-fearly-inlining                    [enabled]
...

查看选项 -falign-functions、-falign-jumps、-falign-labels 和 -falign-loops 方法 2 声称它们都已启用,而方法 1 表示仅启用 -falign-labels。选项 -fdce 和 -fdse 根据方法 2 启用,但不是根据方法 1。

问题:我应该相信哪种方法?

旁注:方法 2 的列表不完整,因为选项已分组,并且仅列出了使用 --help= 选项请求的组。要查看方法 2 中的所有选项,请运行:

$ gcc -Q -O3 -march=native --help=optimizers --help=target --help=c 
--help=common --help=warnings | sort
4

1 回答 1

1

来自 GCC 文档:

--help={class|[^]qualifier}[,...] 打印(在标准输出上)编译器理解的适合所有指定类和限定符的命令行选项的描述。

然而

如果 -Q 选项出现在 --help= 选项之前的命令行中,则 --help= 显示的描述性文本会更改。不是描述显示的选项,而是指示该选项是启用、禁用还是设置为特定值(假设编译器在使用 --help= 选项时知道这一点)

似乎 --help 只是显示可以启用哪些选项,而 -Q 允许查看它是否实际启用。还:

输出对先前命令行选项的影响很敏感

于 2013-08-15T00:33:30.427 回答