سرواژه های عبارت GNU Compiler Collection است، GCC یک مجموعه از کامپایلرهای برنامه نویسی شامل سی، سی پلاس پلاس، سی شی گرا، فرترن، جاوا و ادا است.
بعد از نصب، یک فایل C ساده با اجرای دستورات زیر کامپایل میشود.
gcc -o test test.c
در مثال بالا، کامپایلر GCC از نام test برای خروجی کامپایل فایل test.c به زبان سی استفاده میکند و در نهایت فایل test.exe ایجاد خواهد شد.
یک نسخه ی ویندوزی از GCC در سایت http://www.mingw.org وجود دارد.
صفحه رسمی GCC در وب http://gcc.gnu.org میباشد.
متن اصلی مطلب:
Short for GNU Compiler Collection, GCC is a collection of programming compilers including C, C++, Objective-C, Fortran, Java, and Ada. Once installed, a basic C file, like the one shown on our C definition page, can be compiled by running the below command.
gcc -o test test.c
In the above example, the GCC compiler usestest as the output file and test.c as the C file and would create the file test.exe.
A Windows version of GCC can be found at:http://www.mingw.org/The official GCC page can be found at:http://gcc.gnu.org/