Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在构建 gcc 时遇到了一些问题,安装后我需要让 gcc 复制所有带有后缀的内容。所有的可执行文件最后都必须有 -4.7,这样我的默认编译器就不会被搞砸了。有我可以使用的配置变量吗?
GCC 的配置脚本有一个选项:--program-suffix,所以运行类似:
--program-suffix
./configure --program-suffix="-4.7"
另请参阅./configure -h。
./configure -h