微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux – GCC是否支持命令文件

MSVC编译器支持 command files,用于传递命令行选项.这主要是由于可以传递给 CreateProcess调用的命令行参数的大小限制.

这在Linux系统上不是一个问题,但是当执行Unix应用程序的cygwin端口(例如gcc)时,同样的限制也适用.

因此,有谁知道gcc / g是否也支持某种类型的命令文件

谢谢.

解决方法

当然!
@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.

如果您的平台拥有它,您还可以使用xargs对此类事物进行评审.

原文地址:https://www.jb51.cc/linux/393305.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐