是否所有gcc版本都支持gcc的@file选项?

dvtswwa3  于 2022-11-13  发布在  其他
关注(0)|答案(1)|浏览(147)

据我所知,一些旧的gcc版本不支持@file选项。我不是很确定。有人能给予一些相关的提示吗?
供参考

@file
   Read command-line options from file.  The options read are inserted
   in place of the original @file option.  If file does not exist, or
   cannot be read, then the option will be treated literally, and not
   removed.

   Options in file are separated by whitespace.  A whitespace
   character may be included in an option by surrounding the entire
   option in either single or double quotes.  Any character (including
   a backslash) may be included by prefixing the character to be
   included with a backslash.  The file may itself contain additional
   @file options; any such options will be processed recursively.

谢谢

iih3973s

iih3973s1#

这是致力于gcc来源在这里:

2005-11-23  Mark Mitchell  <mark@codesourcery.com>

    * doc/invoke.texi: For man pages, include gcc-vers.texi.
    List @file in the option summary.  Include the libiberty
    documentation for @file.
    * gcc.c (main): Call expandargv.
    * Makefile.in (gcc-vers.texi): Define srcdir.

根据history版本,这应该已经进入GCC 4.1

相关问题