mingw64(win8.1)如何让他看到提升库?

时间:2015-02-22 16:27:03

标签: c++ windows g++

我安装在我的win8.1 mingw上,我想编译我的程序。 当我使用命令时:

g++ -o test test.cpp -lboost_unit_test_framework-mt

我收到了一个错误:

no such file od directory: 
"#include boost/test/unit_test.hpp" // in "<>" ofc.

当我使用我的msVS时它工作正常。

1 个答案:

答案 0 :(得分:0)

您还必须使用-L-I选项指定boost库和标题所在的目录:

g++ -I<path_to_headers> -o test test.cpp -L<path_to_library> -lboost_unit_test_framework-mt

注意标题路径应该是包含boost目录的路径。