Debian

如何使 GCC 幫助選項 (--help=) 顯示有關指定庫的 -L-l 選項的幫助資訊?

  • February 8, 2021

我發現 GCC 幫助選項--help=對於查找有關選項的資訊非常有用。

--help=common但是,雖然我可以使用 eg和找到很多資訊--help=separate,但我找不到任何描述-L-l指定庫的部分。

由於多年來一直對應用程序開發至關重要,因此它們必須出現在某些幫助部分中-L-l

如何顯示-L-l使用的幫助資訊--help=

這些是子程序的命令行選項,因此您需要添加-v才能看到它們。gcc -help

(使用 ‘-v –help’ 顯示子程序的命令行選項)。

這樣做會產生

[...]
The following options are language-related:
[...]
 -L                          This option lacks documentation.

然後在連結器選項中,

 -l LIBNAME, --library LIBNAME
                             Search for library LIBNAME
 -L DIRECTORY, --library-path DIRECTORY
                             Add DIRECTORY to library search path

引用自:https://unix.stackexchange.com/questions/633318