Gcc

From wikinotes

Usage

## compile c++11 program
g++ -std=c++0x example.cpp -o example_program

# compile c99
gcc \
  -std=c99 \            # the C-standard to compile
  example.c \           # your source-code (all files)
  -o bin/example        # your output

export LD_LIBRARY_PATH=/usr/lib/x
export C_INCLUDE_PATH=/opt/gdbm-1.8.3/include 
export CPLUS_INCLUDE_PATH=/opt/gdbm-1.8.3/include