我在Mac上运行QtCreator ...我想开始使用Boost库...因此,我使用

brew install boost

之后,我创建了一个小的boost hello world程序,并按如下所示对.pro文件进行了更改
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt

unix:INCLUDEPATH += "/usr/local/Cellar/boost/1.55.0_1/include/"
unix:LIBPATH += "-L/usr/local/Cellar/boost/1.55.0_1/lib/"

SOURCES += main.cpp

LIBS += \
-lboost_date_time \
-lboost_filesystem \
-lboost_program_options \
-lboost_regex \
-lboost_signals \
-lboost_system

我仍然无法建造……可能是什么原因?请建议我可能是什么错误...

错误是
library not found for -lboost_data_time
linker command failed with exit code 1 (use -v to see invocation)

最佳答案

由于Uflex错过了一些东西,因此需要一些答案。
因此,请保持相同的代码:

//make sure that there is a boost folder in your boost include directory
#include <boost/chrono.hpp>
#include <cmath>

int main()
{
auto start = boost::chrono::system_clock::now();

    for ( long i = 0; i < 10000000; ++i )
        std::sqrt( 123.456L ); // burn some time

    auto sec = boost::chrono::system_clock::now() - start;
    std::cout << "took " << sec.count() << " seconds" << std::endl;

    return 0;
}

但是让我们稍微改变一下他的.pro:
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt

SOURCES += main.cpp

macx {
    QMAKE_CXXFLAGS += -std=c++11

    _BOOST_PATH = /usr/local/Cellar/boost/1.55.0_1
    INCLUDEPATH += "$${_BOOST_PATH}/include/"
    LIBS += -L$${_BOOST_PATH}/lib
    ## Use only one of these:
    LIBS += -lboost_chrono-mt -lboost_system # using dynamic lib (not sure if you need that "-mt" at the end or not)
    #LIBS += $${_BOOST_PATH}/lib/libboost_chrono-mt.a # using static lib
}

我唯一添加到此的是boost系统(-lboost_system)
那应该可以解决他的原始版本引起 undefined symbol 的问题,并允许您添加其他库。

例如-lboost_date_time,对我而言,它与brew安装非常完美。

当然,我的路径实际上是:/usr/local/Cellar/boost/1.55​​.0_2

10-06 01:52