我的理解是,无论谁编写了程序,都会编写帮助部分来解释可以传递给它的每个参数的作用,如果我输入,g++ --help
我会得到一个显示很多选项的说明“在我的情况下,我正在查看/usr/bin/arm-none-eabi-g++ --help
”,但它们看起来非常相似
我有 CMake 生成的输出,我试图逐步了解它,有时路径包含在 -I 中,有时包含在 -isystem 中
/usr/bin/arm-none-eabi-g++ \
"-I${PICO_SDK_PATH}/src/rp2_common/pico_atomic/include" \
-isystem "${PICO_SDK_PATH}/src/common/pico_stdlib_headers/include" \
有什么区别吗?
为什么我在屏幕上看不到以太-I
或-system
或?-D
--help
--help
靠近读段顶部
--target-help Display target specific command line options (including assembler and linker options).
--help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...].
我不明白如何打开和查看此--help=
子帮助,看看它是否在子类别中进行了解释