出错 :‘std:chrono’尚未声明

报错 :‘std::chrono’尚未声明
std::chrono::time_point<std::chrono::system_clock> start, end;这句报错了,但是我加#include <chrono>这个呢,为什么呢?我是新手,多多帮忙
------解决思路----------------------
这个文件需要c++0x特性才能用

g++的编译选项加下std=c++0x or -std=gnu++0x
------解决思路----------------------
 must be enabled with the -std=c++0x or -std=gnu++0x compiler options.