C/C++ tips
改进此文档
08 Aug 2019
编译选项
查看inlude路径
gcc -v -x c -E /dev/null
-vEnable verbose mode-x cTells GCC that the input is to be treated as C source code-x c++Tells GCC that the input is to be treated as Cpp source code-EStop after preprocessing
-----EOF-----