User Tools

Site Tools


haas:summer2017:cprog:projects:fcc0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
haas:summer2017:cprog:projects:fcc0 [2017/07/15 16:00] – created wedgehaas:summer2017:cprog:projects:fcc0 [2017/07/15 16:25] (current) – [Review of Compiling/Executing] wedge
Line 196: Line 196:
  
 <code> <code>
-gcc -o BINARY_FILE SOURCE_FILE+gcc -Wall --std=c99 -o BINARY_FILE SOURCE_FILE
 </code> </code>
  
 The BINARY_FILE comes **immediately after** the **-o**, **NOT** the SOURCE_FILE (it must never **immediately** follow a **-o**). It can precede, and such is perfectly valid (especially if you feel that way more intuitive). The BINARY_FILE comes **immediately after** the **-o**, **NOT** the SOURCE_FILE (it must never **immediately** follow a **-o**). It can precede, and such is perfectly valid (especially if you feel that way more intuitive).
 +
 +The **-Wall** (treat all warnings as errors, increase general verbosity about warnings) and **--std=c99** (switch compiler to use the **C99** standard of the C language) are options given to the compiler.
  
 To execute your binary, we need to specify a path to it, so we use **./**, which basically references the current directory: To execute your binary, we need to specify a path to it, so we use **./**, which basically references the current directory:
Line 213: Line 215:
  
   * Code must compile cleanly (no warnings or errors)   * Code must compile cleanly (no warnings or errors)
-    * Use the **-Wall** flag when compiling.+    * Use the **-Wall** and **--std=c99** flags when compiling.
   * Output must be correct, and resemble the form given in the sample output above.   * Output must be correct, and resemble the form given in the sample output above.
   * Code must be nicely and consistently indented (you may use the **indent** tool)   * Code must be nicely and consistently indented (you may use the **indent** tool)
Line 248: Line 250:
 *:fcc0:correct operation (run 3/4) [6/6] *:fcc0:correct operation (run 3/4) [6/6]
 *:fcc0:correct operation (run 4/4) [6/6] *:fcc0:correct operation (run 4/4) [6/6]
-*:afn0:intro function works and used [6/6] +*:fcc0:intro function works and used [6/6] 
-*:afn0:display function works and used [6/6] +*:fcc0:display function works and used [6/6] 
-*:afn0:chkmove function works and used [6/6]+*:fcc0:chkmove function works and used [6/6]
 </code> </code>
haas/summer2017/cprog/projects/fcc0.1500134432.txt.gz · Last modified: 2017/07/15 16:00 by wedge