Dear Easior:
Thanks for your reply!!
Following i will show my flow of create project step by step~
1.Select create a new project.
2.Select wxWidgets project.
3.Press Next....
4.Select wxWidgets 3.0.x and press Next...
5.Input the project title and etc, then press Next...
6.Input Author, author'email and etc. Then press Next...
7.Here in "Preferred GUI Builder", i select "wxSmith". In "Application Type" i select "Frame Based". Then press Next...
8.Input the wxWidgets Path. Then press Next...
9.Select Compiler, i select mingw64. Debug and Release i only select Debug. Then press Next...
10.Here In "wxWidgets Library Settings", i select "wxWidgets is built as a monolithic library" and "Enable unicode". And select the item "Configure Advanced Option". Press Next...
11.Finally select "GUI Mode Application". Press Finish...
above is my flow of create a new project.
But now i find out the solution.
When i build wxWidgets for win7 64-bit, i meet the same error message. And i modify a file named config.gcc in wxWidgets-3.0.2. I change the value CXXFLAGS ?= to CXXFLAGS += "-std=gnu++11" and then this can build finish.
So now in Code::Blocks, i goto Settings-->Compiler. And in below "compiler Flags" i cheched the item "Have g++ follow the C++11 ISO C++ language standard [-std=c++11]"
Then rebuild can resolve this problem. Hope can help others meet this problem.