Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 2.26 KB

File metadata and controls

45 lines (24 loc) · 2.26 KB

Compilers and Integrated Development Environments (IDEs)

Compilers

The course focuses on the C language. The reference is C11 (ISO/IEC 9899:2011), as the C18 (ISO/IEC 9899:2018) did not introduce new features. Valid compilers include recent gcc and Clang.

IDEs

Code::Blocks

Free, open source, cross platform IDE for C, C++, and Fortran. Some setup packages with mingw in their name include a gcc compiler, but a compiler could also be added at a later time.

Code::Blocks runs on most Windows and Linux boxes, but several problems have been reported on Mac's, especially the newest ones. Available in all Politecnico labs.

CodeLite

Free, open source, cross platform IDE for C, C++, PHP, and Node.js. Compiler and debugger must be downloaded separately.

CodeLite runs smoothly with all recent Windows (7, 8, 10), Mac OS X, Linux. Not available in Politecnico labs.

XCode

The official IDE from Apple, available for free. Extremely powerful, with tons of features that will not be used in the course. It only works on Mac computers.

Note: Installing XCode could be required to get a working C compiler on a Mac box, even if you plan to use CodeLite.

VisualStudio

The official IDE from Microsoft. Available in a multitude of versions, some free. Extremely powerful, with tons of features that will not be used in the course. It only works with Microsoft OS. Double check whether the compiler is fully compliant with the ISO/IEC standard.

Online IDEs

Several sites are offering free, online IDEs for C. They may be useful to check code on-the-fly from a portable device.