c++ - Smaller GCC package, only C needed -
There is a small download for GCC, if you want to compile only one language, is it? TCC is a great option for windows, but I need to compile it on several platforms. I also like the fact that GCC is usually used.
If a specific download is not small, can I exclude the data in the downloaded package which is not necessary to compile C? Will there be issues of this approach?
When you make a GCC, then you have to do first. By specifying
There are several other options that allow you to make GCC consistent with your needs. - enable-languages = c , your build will be limited to only one language.
Comments
Post a Comment