[008]C/C++系列 | g++ 一些选项说明

  • -g - turn on debugging (so GDB gives more friendly output)
  • -Wall - turns on most warnings
  • -O or -O2 - turn on optimizations
  • -o  - name of the output file
  • -c - output an object file (.o)
  • -I - specify an include directory
  • -L - specify a lib directory
  • -l - link with library lib.a

详细请看:

《Compiling with g++》

《Compiling with g++ -- GeeksforGeeks》

你可能感兴趣的:([008]C/C++系列,C++,Linux,G++)