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.
如果您需要编译的唯一语言是 C,是否有较小的 GCC 下载?TCC 是 Windows 的绝佳选择,但我需要它在多个平台上编译。我也喜欢 GCC 非常常用的事实。
如果没有更小的特定下载,我是否能够清除下载的包中编译 C 不需要的数据?这种方法会有问题吗?
构建 GCC 时,必须先对其进行配置。
指定--enable-languages=c会将您的构建限制为仅 C 语言。
--enable-languages=c
还有许多其他选项可让您根据需要定制 GCC。