我有一个使用在Xcode 6.1下成功构建的boost_date_time的项目。我现在收到6.1.1下的错误信息:
" boost :: filesystem :: detail :: create_directory(boost :: filesystem :: path const&,boost :: system :: error_code *)",引自:
main.o中的boost :: filesystem :: create_directory(boost :: filesystem :: path const&)
我已经正确地在搜索路径选项卡/ usr / local / lib中输入了库搜索路径,并包含在自定义编译器选项C ++编译器选项-lboost_filesystem中。
如果我使用终端窗口,我可以使用g ++编译器选项-L / usr / local / lib和-lboost_filesystem成功使用make或ld生成可执行文件。
我重新安装了boost 1.57.0,以确保升级库是最新的。
有谁知道如何在Xcode中设置正确的选项来解决这个问题?