Difference between revisions of "Installing a C Compiler and IDE"

From Mech
Jump to navigationJump to search
 
(32 intermediate revisions by 3 users not shown)
Line 3: Line 3:
language. Towards that goal, we will begin the course by writing some simple C
language. Towards that goal, we will begin the course by writing some simple C
programs that are built to run on a computer alone, and not any sort of
programs that are built to run on a computer alone, and not any sort of
microprocessor. This section will guide you through setting up a C-language
microprocessor. This section will guide you through setting up a C language
compiler and an integrated development environment or IDE.
compiler and an integrated development environment or IDE.


Note that if you already have a compiler and/ or IDE that you are comfortable
If you already have a C compiler you are comfortable with, you can ignore this page.
and experienced with this page may be of little use to you.


= Setting up a compiler =
= Setting up a compiler =
Line 23: Line 22:
In the next section we are going to discuss setting up an integrated development
In the next section we are going to discuss setting up an integrated development
environment ([http://en.wikipedia.org/wiki/Integrated_development_environment IDE])
environment ([http://en.wikipedia.org/wiki/Integrated_development_environment IDE])
called [http://netbeans.org/ NetBeans]. They have very thorough directions for
called [http://netbeans.org/ NetBeans]. If you run into any issues installing GCC,
setting up the GCC compiler on every operating system
check out NetBeans' instructions for each operating system. They have very thorough
directions that could definitely help to sort out any problems; you can find those instructions
[http://netbeans.org/community/releases/69/cpp-setup-instructions.html here].
[http://netbeans.org/community/releases/69/cpp-setup-instructions.html here].


Line 31: Line 31:
working with. The GCC toolsuite was originally developed to work with
working with. The GCC toolsuite was originally developed to work with
Unix/Linux operating systems, but there are two popular Windows ports available,
Unix/Linux operating systems, but there are two popular Windows ports available,
Cygwin and MinGW. [http://mingw.org/ MinGW] is probably the easier of the two to setup so that is
Cygwin and MinGW.
what we recommend. To install, do the following:

[http://mingw.org/ MinGW] is probably the easier of the two to setup so that is
what we recommend. '''Complete, detailed instructions for this process can be found [http://netbeans.org/community/releases/69/cpp-setup-instructions.html#mingw here].'''

A quick summary of these steps is provided in the following:


# Install [http://sourceforge.net/project/downloading.php?group_id=2435&filename=MinGW-5.1.4.exe&a=57946486 MinGW-5.1.4.exe] (direct link).
# Install [http://sourceforge.net/project/downloading.php?group_id=2435&filename=MinGW-5.1.4.exe&a=57946486 MinGW-5.1.4.exe] (direct link).
# Add C:\MinGW\bin to the system path by editing your system's [http://www.mingw.org/wiki/Getting_Started#toc4 Environment Settings].
# Add C:\MinGW\bin to the system path by editing your system's [http://www.mingw.org/wiki/Getting_Started#toc4 Environment Settings]. This is the most complex portion of the install process; read the directions in the link carefully.
# Install MSYS 1.0 files by running [http://downloads.sourceforge.net/mingw/MSYS-1.0.10.exe MSYS-1.0.10.exe] (direct link).
# Install MSYS 1.0 files by running [http://downloads.sourceforge.net/mingw/MSYS-1.0.10.exe MSYS-1.0.10.exe] (direct link).
# Install the gdb debugger by downloading [http://sourceforge.net/project/downloading.php?group_id=2435&filename=gdb-6.8-mingw-3.tar.bz2&a=66334146 gdb-6.8-mingw-3.tar.bz2] (direct link) and extracting using WinZip, gzip, or 7-zip such that the gdb executable is in the C:\MinGW\bin directory.
# Install the gdb debugger by downloading [http://sourceforge.net/project/downloading.php?group_id=2435&filename=gdb-6.8-mingw-3.tar.bz2&a=66334146 gdb-6.8-mingw-3.tar.bz2] (direct link) and extracting using [http://www.winzip.com/ WinZip] (must purchase), [http://www.gzip.org/#exe gzip], or [http://www.7-zip.org/ 7-zip] (recommended) such that the gdb executable is in the C:\MinGW\bin directory.


'''If you have any issues, check out the more detailed instructions for this process [http://netbeans.org/community/releases/69/cpp-setup-instructions.html#mingw here].'''


=== Apple OSx ===
=== Apple OSx ===
To get all of the required tools you must install Xcode and X11 from the [http://developer.apple.com/devcenter/mac/index.action Apple Developer Connection].
To get all of the required tools you must install Xcode and X11 from the [http://developer.apple.com/devcenter/mac/index.action Apple Developer Connection].
Note that you must sign up for a free ADC membership.
Note that you must sign up for a free Apple Developer membership.

If you are running Mac OSX 10.7 (commonly known as Lion), you will download Xcode 4 from the Mac App Store. If you are running Mac OSX 10.6 or earlier, you will download Xcode 3. The .dmg download for Xcode 3 is available directly from the box on the left hand side of [http://developer.apple.com/xcode the Xcode page].

If you are not yet an Apple Developer, which is necessary to download Xcode, you can sign up for free [http://developer.apple.com/programs/register here] by filling out the questionnaire.


=== Linux ===
=== Linux ===
Line 71: Line 72:
the full version, or just the C/C++ version (recommended). Note that this
the full version, or just the C/C++ version (recommended). Note that this
doesn't really matter as modules can be added or deleted later on.
doesn't really matter as modules can be added or deleted later on.

'''Note to Windows users:''' When deciding between 6.9 and 7.0 versions, you should
read the notes directly under the "Hello World" test program in the
[[Installing a C Compiler and IDE#Test Programs| Test Programs]] section of this page.
Even though 6.9 is older you may be interested in installing it instead.


'''More detailed tips on configuring and troubleshooting can be found [http://netbeans.org/community/releases/69/cpp-setup-instructions.html here].'''
'''More detailed tips on configuring and troubleshooting can be found [http://netbeans.org/community/releases/69/cpp-setup-instructions.html here].'''


'''A decent tutorial on setting up and configuring C/C++ projects within NetBeans can be found [http://netbeans.org/kb/docs/cnd/quickstart.html here].'''
'''A decent tutorial on setting up and configuring C/C++ projects within NetBeans can be found [http://netbeans.org/kb/docs/cnd/quickstart.html here].'''

=== ME333 Customization ===
In this course we plan on using two spaces for an indent, and no more than 80 characters per line. To set these options in NetBeans do the following:
#click "Tools>Options" '''(Mac users: go to Netbeans>Preferences>Editor)'''
#Then select "Editor" from the buttons at the top
#Then select the "Formatting" tab
#Set "Languages" to "All Languages"
##change "Number of Spaces per Indent" to 2
##"Tab Size" to 2
##"Right Margin" to 80
##make sure the checkbox for "Expand Tabs to Spaces" is checked
##"Line Wrap" is set to "After words"
#Then set "Language" to C, and make sure that the "Override Global Options" checkbox is unchecked.


= Test Programs =
= Test Programs =
Line 88: Line 107:
#Clicking the plus next to "Source Files" in the project window should reveal a file called "main.c". This is basically a blank C source code template that you can work from. Open this file by double clicking on it.
#Clicking the plus next to "Source Files" in the project window should reveal a file called "main.c". This is basically a blank C source code template that you can work from. Open this file by double clicking on it.
#Edit the "main" function so that it looks like the following:
#Edit the "main" function so that it looks like the following:

<font size="3">
<font size="3">
int main(int argc, char** argv) {
int main(int argc, char** argv) {
Line 95: Line 113:
}</font>
}</font>


'''This next step may be very important for Windows users!''' When a compiled project is run inside of NetBeans, it must decide where to display the output, and if the user is expected to provide input, where that input will come from. There are three options, an "External Terminal", "Standard Output" and "Internal Terminal" (at least in NetBeans 7.+). Depending on how you have your system setup these are not all guaranteed to work! What you should do is right click on the project name in the "Projects" window, and then click "Project Properties". Next click "Run" and locate the "Console Type" drop down menu. Make sure it is set to "External Terminal". In the future if you are getting strange behavior such as print statements that aren't showing up you might want to check this setting. Note that "External Terminal" is appropriate for other operating systems as well. As far as I can tell, this is only an issue in versions of NetBeans newer than 7.0, and it may be quite annoying as it seems there is no way to set this to a default. If you are bothered by it, consider installing a slightly older version of NetBeans (such as 6.9).


Your project is now created, and we will look at a couple of different ways to compile and run it.
Your project is now created, and we will look at a couple of different ways to compile and run it.



=== Using the IDE to compile ===
=== Using the IDE to compile ===
Line 129: Line 149:
that in OSx or Linux there will not be a ".exe" extension on your executable.
that in OSx or Linux there will not be a ".exe" extension on your executable.
The compiler name found in the above directory may vary as well.
The compiler name found in the above directory may vary as well.



=== Command Line Usage ===
=== Command Line Usage ===
Line 184: Line 205:
confusing! This is one of the things that the IDE does for you. It sets all of
confusing! This is one of the things that the IDE does for you. It sets all of
these options either automatically or through graphical interfaces.
these options either automatically or through graphical interfaces.



=== Makefiles ===
=== Makefiles ===
Line 203: Line 225:
you would see if you opened NetBeans and clicked "Run>Build Main Project".
you would see if you opened NetBeans and clicked "Run>Build Main Project".


= Tutorial Sample Code =
We have provided several simple sample programs to get you started with
the C language. You should compile and run each of them, read the comments, answer the questions, and read the portions of the [[Media:CrashCourseinC.pdf|Crash Course in C manual]] referenced for more background.


* [[Media:Simple1.c|Simple1.c]]: A first simple program to learn about different data types and printing to screen. This is the output of running the executable version:
=== Other Sample Code ===
<pre>
We have provided several other sample pieces of code to facilitate learning
This is a simple message
the C-language. The first you should look at can be found [[media:starter.c|here]], and a
The value of the variable c is: c.
slightly more complicated piece of code can be found [[media:Invest.c| here]].
The value of the variable i is: 25.
Each of these can be compiled by creating a new NetBeans project as described above except
The value of the variable f is: 12.500000.
Again, the values are: c = c, i = 25, and f = 12.500000.
</pre>
* [[Media:Simple2.c|Simple2.c]]: A second program to learn about useful C constructs including functions, if statements, and loops. This is the output:
<pre>
The value of i is 0 and 0/2 is 0.000000.
The value of i is 1 and 1/2 is 0.500000.
The value of i is 2 and 2/2 is 1.000000.
The value of i is 3 and 3/2 is 1.500000.
The value of i is 4 and 4/2 is 2.000000.
</pre>
* [[Media:Invest.c|Invest.c]]: The most complex tutorial program, which exercises a number of the features and capabilities of the C language while performing a very simple function: calculating the value of an investment over time. It also provides references to the [[Media:CrashCourseinC.pdf|Crash Course in C manual]] for further reading. Below is some sample output. You should be able to understand each step of the program to see how this output is produced.
<pre>
Enter investment, growth rate, number of yrs (up to 100): 1000.00 1.05 5
Valid input? 1

RESULTS:

Year 0: 1000.00
Year 1: 1050.00
Year 2: 1102.50
Year 3: 1157.62
Year 4: 1215.51
Year 5: 1276.28

Enter investment, growth rate, number of yrs (up to 100): 1000.00 1.05 500
Valid input? 0
Invalid input; exiting.

Casting example.
Ratio, 5/2: 2.00
Ratio, 5/((float) 2): 2.50
Ratio, ((float) 5)/((float) 2): 2.50
</pre>

Each of these programs can be compiled by creating a new NetBeans project as described above except
this time you will want to uncheck "Create Main File." To add one of the downloaded example codes
this time you will want to uncheck "Create Main File." To add one of the downloaded example codes
to your project simply alternate click (right click Windows, Ctrl+click OSx) where it says
to your project simply alternate click (right click Windows, Ctrl+click OSx) where it says
Line 214: Line 275:
your project you should be able to build and run it using the instructions from above.
your project you should be able to build and run it using the instructions from above.


= Other Resources=
= Conclusions =

[http://netbeans.org/kb/docs/cnd/quickstart.html NetBeans C/C++ Projects Quick Start Tutorial]

[http://mingw.org/wiki/HOWTO_Install_the_MinGW_GCC_Compiler_Suite HOWTO Install MinGW Compiler Suite]

[http://netbeans.org/community/releases/69/cpp-setup-instructions.html Configuring the NetBeans IDE for C/C++/Fortran]

[http://www.cprogramming.com/compilingandlinking.html CProgramming Compiling and Linking]

[http://www.jfranken.de/homepages/johannes/vortraege/make_inhalt.en.html An introduction to Makefiles]

Latest revision as of 13:49, 12 January 2012

Introduction

One of the purposes of this course is to learn the basics of the C programming language. Towards that goal, we will begin the course by writing some simple C programs that are built to run on a computer alone, and not any sort of microprocessor. This section will guide you through setting up a C language compiler and an integrated development environment or IDE.

If you already have a C compiler you are comfortable with, you can ignore this page.

Setting up a compiler

Unlike some languages that you may be familiar with (MATLAB for one) the C programming language must be "compiled" before it can be run on the computer. A compiler's job is to take the code that a person writes in the C-language and convert it to a "binary file" in machine language that the computer understands. For more info see wikipedia.

The compiler that we recommend is the GNU Compiler collection or GCC. This is a widely used cross-platform compiler toolsuite that has libraries and compilers for C, C++, Fortran, Java, and more. Additionally the compiler that we will use later on in the course for compiling C code to run on the PIC32 is based on GCC.

In the next section we are going to discuss setting up an integrated development environment (IDE) called NetBeans. If you run into any issues installing GCC, check out NetBeans' instructions for each operating system. They have very thorough directions that could definitely help to sort out any problems; you can find those instructions here.

Windows

Windows is arguably the most difficult operating system to get the compiler working with. The GCC toolsuite was originally developed to work with Unix/Linux operating systems, but there are two popular Windows ports available, Cygwin and MinGW. MinGW is probably the easier of the two to setup so that is what we recommend. To install, do the following:

  1. Install MinGW-5.1.4.exe (direct link).
  2. Add C:\MinGW\bin to the system path by editing your system's Environment Settings. This is the most complex portion of the install process; read the directions in the link carefully.
  3. Install MSYS 1.0 files by running MSYS-1.0.10.exe (direct link).
  4. Install the gdb debugger by downloading gdb-6.8-mingw-3.tar.bz2 (direct link) and extracting using WinZip (must purchase), gzip, or 7-zip (recommended) such that the gdb executable is in the C:\MinGW\bin directory.

If you have any issues, check out the more detailed instructions for this process here.

Apple OSx

To get all of the required tools you must install Xcode and X11 from the Apple Developer Connection. Note that you must sign up for a free Apple Developer membership.

If you are running Mac OSX 10.7 (commonly known as Lion), you will download Xcode 4 from the Mac App Store. If you are running Mac OSX 10.6 or earlier, you will download Xcode 3. The .dmg download for Xcode 3 is available directly from the box on the left hand side of the Xcode page.

If you are not yet an Apple Developer, which is necessary to download Xcode, you can sign up for free here by filling out the questionnaire.

Linux

Many linux distributions have GCC bundled with the install, if you do not have it you should be able to get it from your distribution's repositories using your favorite package manager.

Setting up the IDE

Now that you have a compiler, all you really need is a text editor, and you are ready to start coding in C. However, learning the ins and the outs of compiling, linking, debugging, Makefiles, etc. can be a bit overwhelming. So we are going to recommend the use of an IDE to help you get started. As well as helping beginners, many experienced programmers do all of their development in an IDE. An IDE can act as a source code editor, it can provide graphical interfaces to debuggers and compilers, it can autogenerate useful configuration files, and many more useful features. The IDE that we are going to recommend is NetBeans. NetBeans is totally free, it is cross-platform, and Microchip has paired with NetBeans to develop their new-generation IDE for PIC development, MPLABX (which you will be using later in the course).

To install NetBeans simply visit this link and install either 6.9.1 or 7.0.1 for your operating system. You can install either the full version, or just the C/C++ version (recommended). Note that this doesn't really matter as modules can be added or deleted later on.

Note to Windows users: When deciding between 6.9 and 7.0 versions, you should read the notes directly under the "Hello World" test program in the Test Programs section of this page. Even though 6.9 is older you may be interested in installing it instead.

More detailed tips on configuring and troubleshooting can be found here.

A decent tutorial on setting up and configuring C/C++ projects within NetBeans can be found here.

ME333 Customization

In this course we plan on using two spaces for an indent, and no more than 80 characters per line. To set these options in NetBeans do the following:

  1. click "Tools>Options" (Mac users: go to Netbeans>Preferences>Editor)
  2. Then select "Editor" from the buttons at the top
  3. Then select the "Formatting" tab
  4. Set "Languages" to "All Languages"
    1. change "Number of Spaces per Indent" to 2
    2. "Tab Size" to 2
    3. "Right Margin" to 80
    4. make sure the checkbox for "Expand Tabs to Spaces" is checked
    5. "Line Wrap" is set to "After words"
  5. Then set "Language" to C, and make sure that the "Override Global Options" checkbox is unchecked.

Test Programs

Step 2 configuration.
Screenshot of step 3 configuration.

In this section, we are going to create a very simple project in NetBeans, and then compile it and analyze the output using a few different techniques.

  1. First open NetBeans, and click File>New Project
  2. Select C/C++ Application
  3. Configure project as shown. Be sure "Create Main File" and "Set as Main Project" checkboxes are selected, and that the language of choice is C (not C++). Also be sure your compiler is selected under "Tool Collection."
  4. Locate the "Projects" window. If it is not already visible, you can select it under the Window menu at the top of the screen.
  5. Clicking the plus next to "Source Files" in the project window should reveal a file called "main.c". This is basically a blank C source code template that you can work from. Open this file by double clicking on it.
  6. Edit the "main" function so that it looks like the following:

     int main(int argc, char** argv) {
       printf("Hello World!");
       return (EXIT_SUCCESS);
     }

This next step may be very important for Windows users! When a compiled project is run inside of NetBeans, it must decide where to display the output, and if the user is expected to provide input, where that input will come from. There are three options, an "External Terminal", "Standard Output" and "Internal Terminal" (at least in NetBeans 7.+). Depending on how you have your system setup these are not all guaranteed to work! What you should do is right click on the project name in the "Projects" window, and then click "Project Properties". Next click "Run" and locate the "Console Type" drop down menu. Make sure it is set to "External Terminal". In the future if you are getting strange behavior such as print statements that aren't showing up you might want to check this setting. Note that "External Terminal" is appropriate for other operating systems as well. As far as I can tell, this is only an issue in versions of NetBeans newer than 7.0, and it may be quite annoying as it seems there is no way to set this to a default. If you are bothered by it, consider installing a slightly older version of NetBeans (such as 6.9).

Your project is now created, and we will look at a couple of different ways to compile and run it.


Using the IDE to compile

To compile the code you can click "Run>Build Main Project". Note the text that is printed in the "Output" window. If no errors are printed and you see something like

     BUILD SUCCESSFUL (total time: 2s) 

then everything worked and you are ready to run the code. Clicking the green triangle button, or "Run>Run Main Project" will actually run the code. You should see something like

     Hello World!  
     RUN SUCCESSFUL (total time: 144ms) 

printed in the "Output" window. If all of this worked, you have just written, compiled, and ran a test C program.

Note that there are several output files that are created by this compilation process. In your project directory there are two subdirectories called "build/" and "dist/". Inside of the "build/" directory are the so-called object files generated by the compiler. These are essentially just machine code versions of the raw source code that you wrote. Inside of the "dist/" directory, you will find an executable file that is actually capable of running on your system. For example, on a Windows machine that followed all previous instructions, you will find the following file

   <PROJECT_DIRECTORY>\dist\Debug\MinGW-Windows\helloworld.exe 

This executable can be run just like any other executable on your system. Note that in OSx or Linux there will not be a ".exe" extension on your executable. The compiler name found in the above directory may vary as well.


Command Line Usage

To further analyze what just happened we are going to do a couple of things from the command line. In your OS, open a command line. In OSx this is called "Terminal" and in Windows this is called cmd (Click "Start>Run" then type cmd and hit enter).


Let's start by simply executing the file generated by the previous compilation. So we are going to navigate to the aforementioned executable output directory of the project. Note that the command "cd" will allow you to change directories. So for example on Windows you might type something like

     cd C:\Users\<USERNAME>\Documents\NetBeansProjects\HelloWorld\dist\Debug\MinGW-Windows 

or on OSx or Linux I might type something like

     cd /home/<USERNAME>/NetBeansProjects/dist/Debug/GNU-Linux-x86/ 

where you must replace <USERNAME> with your username.


Typing "ls" in the command line will then print the contents of the current directory. Note that in Windows, "ls" is not part of the normal command line interface, but earlier when we installed MSYS, we enabled this. If for some reason "ls" does not work to print the directory contents, try typing "dir". Printing the contents of the output directory should reveal just one executable file, "helloworld.exe" (Windows) or simply "helloworld" (Linux/OSx). Let's run that executable now so we can see its output. On Windows simply type "helloworld.exe" (no quotes) into the command line and press enter; in OSx, type "./helloworld". You should see "Hello World!" echoed back to you.


Now let's attempt to compile this file by invoking the compiler manually. We want to navigate to the base project directory. On any OS that can be accomplished by typing

     cd ../../../ 

Note that here the ".." implies the parent directory of the current directory. Now we are ready to compile the file using GCC. On Windows we can type

     gcc.exe -o helloworld.exe main.c 

or on OSx you can type

     gcc -o helloworld main.c 

This will generate a new executable file in the current directory called "helloworld(.exe)". This can be executed as we just did above. Note that the "-o" in the above commands is an option telling the compiler where to generate the output. There hundreds of different options that can be passed to the compiler and many different configurations for how projects are compiled. It can be quite confusing! This is one of the things that the IDE does for you. It sets all of these options either automatically or through graphical interfaces.


Makefiles

Note that in the project base directory there is a file called "Makefile." This file combined with several other "Makefiles" in the nbproject directory is where all of these options are stored. One of the programs that was installed earlier when we setup a compiler is called "make". Its job is to read the configurations stored in "Makefiles" and call the compiler accordingly.

On complicated projects, compiling can take a very long time. One of the main features of "make" is that before it compiles anything, it looks at what files have changed since compilation last occurred. It then compiles only the files that must be recompiled to reflect changes. This can significantly increase compilation speed. "Make" is what NetBeans is actually calling when you are clicking "Build" or "Clean and Build".

We can invoke it from the project base directory by simply typing the word "make" in the command line. The printed output should be the same thing that you would see if you opened NetBeans and clicked "Run>Build Main Project".

Tutorial Sample Code

We have provided several simple sample programs to get you started with the C language. You should compile and run each of them, read the comments, answer the questions, and read the portions of the Crash Course in C manual referenced for more background.

  • Simple1.c: A first simple program to learn about different data types and printing to screen. This is the output of running the executable version:
This is a simple message
The value of the variable c is: c.
The value of the variable i is: 25.
The value of the variable f is: 12.500000.
Again, the values are: c = c, i = 25, and f = 12.500000.
  • Simple2.c: A second program to learn about useful C constructs including functions, if statements, and loops. This is the output:
The value of i is 0 and 0/2 is 0.000000.
The value of i is 1 and 1/2 is 0.500000.
The value of i is 2 and 2/2 is 1.000000.
The value of i is 3 and 3/2 is 1.500000.
The value of i is 4 and 4/2 is 2.000000.
  • Invest.c: The most complex tutorial program, which exercises a number of the features and capabilities of the C language while performing a very simple function: calculating the value of an investment over time. It also provides references to the Crash Course in C manual for further reading. Below is some sample output. You should be able to understand each step of the program to see how this output is produced.
Enter investment, growth rate, number of yrs (up to 100): 1000.00 1.05 5
Valid input?  1

RESULTS:

Year   0:     1000.00
Year   1:     1050.00
Year   2:     1102.50
Year   3:     1157.62
Year   4:     1215.51
Year   5:     1276.28

Enter investment, growth rate, number of yrs (up to 100): 1000.00 1.05 500
Valid input?  0
Invalid input; exiting.

Casting example.
Ratio, 5/2:   2.00
Ratio, 5/((float) 2):   2.50
Ratio, ((float) 5)/((float) 2):   2.50

Each of these programs can be compiled by creating a new NetBeans project as described above except this time you will want to uncheck "Create Main File." To add one of the downloaded example codes to your project simply alternate click (right click Windows, Ctrl+click OSx) where it says "Source Files" in the "Projects" window and select "Add Existing Item...". Once the file is added to your project you should be able to build and run it using the instructions from above.

Other Resources

NetBeans C/C++ Projects Quick Start Tutorial

HOWTO Install MinGW Compiler Suite

Configuring the NetBeans IDE for C/C++/Fortran

CProgramming Compiling and Linking

An introduction to Makefiles