一个小程序,在编译的时候出错,原来使用的编译命令是g++ -std=C++11 array.cpp -o array.exe
g++: error: unrecognized command line option ‘-std=C++11’
修改为使用g++的绝对路径/usr/bin/g++ -std=c++11 array.cpp -o array.exe
2024-02-06 18:14:04
一个小程序,在编译的时候出错,原来使用的编译命令是g++ -std=C++11 array.cpp -o array.exe
g++: error: unrecognized command line option ‘-std=C++11’
修改为使用g++的绝对路径/usr/bin/g++ -std=c++11 array.cpp -o array.exe