diff --git a/documents/Compiler_Flags.md b/documents/Compiler_Flags.md index 5c43f6d88222f18220fb11522a8c328b4156b337..a1c108b33b19064c999078d3e94d07c10c3e75ff 100644 --- a/documents/Compiler_Flags.md +++ b/documents/Compiler_Flags.md @@ -9,8 +9,8 @@ Wall is used to enable many warnings that would otherwise be ignored. Typically #### -pedantic Similar to Wall, we want to prevent any undesired or inconsistent behavior that may occur after compilation. pedantic enables more warning messages during compilation that would otherwise be ignored. -### -std=c99 +#### -std=c99 This tells the compiler we want to follow the C99 standard during compilation. -### -g +#### -g g allows the compiler to produce debugging information that may be useful.