我最近在我的debian Linux中将我的clang ++编译器更新为3.5版。我使用clang ++和终端
中的行编译我的文件clang++ -std=c++1y -stdlib=libc++ -c -g -O0 -Wall -Wextra -pedantic main.cpp
之后出现的是
main.cpp:5:10:fatal error: 'algorithm' file not found
#include <algorithm>
1 error generated
*** [main.o] Error 1
但是当我尝试使用
时locate algorithm
/usr/include/c++/4.6/中有很多文件出现,所以我相信文件在那里。我是Linux的新手,如果可能的话,请做出更详细的解释。 谢谢你的时间。