我从this answer获得了很好的建议,检查了the file list for libbotan1.10-dev
并找到了/usr/lib/libbotan-1.10.a
,因此我使用了链接标记-lbotan-1.10
。
我已经成功编写并编译了websocket ++,json-spirit,connector / c ++和boost::lockfree::spsc_queue
。
我现在正在尝试使用botan的passhash9来散列密码。
当我尝试使用
进行编译时g++ -Ofast -march=native -o btServer broadcast_server_tls.cpp
-I ~/websocketpp-master/ -std=c++0x -D_WEBSOCKETPP_CPP11_STL_
-D_WEBSOCKETPP_NO_CPP11_REGEX_ -lboost_regex -lboost_system
-pthread -L/usr/lib -lssl -lcrypto -ljson_spirit -lmysqlcppconn -lbotan-1.10
g ++在#include <botan/botan.h>
行上出错,说“broadcast_server_tls.cpp:12:25: fatal error: botan/botan.h: No such file or directory
”。
要在Ubuntu 12.10上安装,我做了apt-get install libbotan1.10-dev
。
我该如何纠正?
答案 0 :(得分:1)
你应该编译为:
g++ "whatever_source_file" "whatever flags you are already using" -I/usr/include/botan-1.10/