1

我刚刚用 xubuntu 12.10 安装了一个干净的虚拟机,我正在尝试移植一些在 Windows 上完美运行的 C++ 代码。首先,我已经安装了 Virtualbox 来宾添加和 GCC,我可以编译代码。

我已经从 Internet (boost_1_52) 下载了 boost 库,我已经从 asio 网站 (boost_asio_1_4_8) 放入了 asio 库,并且我已经使用这些说明安装了多线程共享链接版本:

./bootstrap.sh --prefix=/usr &&
./b2 stage threading=multi link=shared

as root: 

我知道 boost 可以工作,因为我已经能够在这里编译测试应用程序(与 lboost_regex 链接)并且它工作得很好:

#include <boost/regex.hpp>
#include <iostream>
#include <string>

int main()
{
    std::string line;
    boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" );

    while (std::cin)
    {
       std::getline(std::cin, line);
        boost::smatch matches;
           if (boost::regex_match(line, matches, pat))
           std::cout << matches[2] << std::endl;
    }
}

所以我正在尝试构建一个 ASIO 示例,这是我之前构建的,在 Windows 上没有问题。文件在这里:

http://www.boost.org/doc/libs/1_53_0/doc/html/boost_asio/examples.html

看:

boost_asio/example/serialization/client.cpp
boost_asio/example/serialization/connection.hpp
boost_asio/example/serialization/server.cpp
boost_asio/example/serialization/stock.hpp

我把我的编译器扔了:

gcc client.cpp -I /usr/include/boost -lboost_system -lboost_thread -lboost_serialization

这给了我这个错误:

connection.hpp:75:35: error: template argument 1 is invalid
connection.hpp:75:35: error: template argument 2 is invalid
connection.hpp:75:44: error: invalid type in declaration before ‘;’ token
connection.hpp:76:13: error: request for member ‘push_back’ in ‘buffers’, which is of non-class type ‘int’
connection.hpp:76:23: error: ‘asio’ is not a class or namespace
connection.hpp:77:13: error: request for member ‘push_back’ in ‘buffers’, which is of non-class type ‘int’
connection.hpp:77:23: error: ‘asio’ is not a class or namespace
connection.hpp:78:5: error: ‘asio’ is not a class or namespace
connection.hpp:78:23: error: ‘socket_’ was not declared in this scope
connection.hpp: In member function ‘void s11n_example::connection::async_read(T&, Handler)’:
connection.hpp:87:15: error: ‘asio’ does not name a type
connection.hpp:87:31: error: expected unqualified-id before ‘&amp;’ token
connection.hpp:87:31: error: expected ‘)’ before ‘&amp;’ token
connection.hpp:87:31: error: expected initializer before ‘&amp;’ token
connection.hpp:90:5: error: ‘asio’ has not been declared
connection.hpp:90:22: error: ‘socket_’ was not declared in this scope
connection.hpp:90:31: error: ‘asio’ has not been declared
connection.hpp:91:21: error: ‘f’ was not declared in this scope
connection.hpp:92:17: error: ‘asio’ has not been declared
client.cpp: At global scope:
client.cpp:26:10: error: ‘asio’ has not been declared
client.cpp:26:26: error: expected ‘)’ before ‘&amp;’ token
client.cpp:43:29: error: ‘asio’ does not name a type
client.cpp:43:45: error: expected unqualified-id before ‘&amp;’ token
client.cpp:43:45: error: expected ‘)’ before ‘&amp;’ token
client.cpp:43:35: error: expected ‘;’ at end of member declaration
client.cpp:43:47: error: ISO C++ forbids declaration of ‘e’ with no type [-fpermissive]
client.cpp:43:47: error: expected ‘;’ at end of member declaration
client.cpp:43:48: error: expected unqualified-id before ‘)’ token
client.cpp:125:1: error: expected ‘}’ at end of input
client.cpp:125:1: error: expected unqualified-id at end of input
client.cpp:125:1: error: expected ‘}’ at end of input

我真的很困惑,好像我没有建立提升或者我错过了另一个链接。我也尝试过与 Winsock 链接,但没有结果。请帮忙!

干杯

4

3 回答 3

1

您正在交替使用 gcc 和 g++。不工作的行使用 gcc,但工作的行使用 g++。使用 g++ 而不是 gcc 可能会影响使用哪个默认包含路径。您最初的错误没有链接。它正在编译。另外,如果你使用 boost 版本,asio 命名空间不是 asio。这是提升::asio。

于 2015-10-07T14:58:22.440 回答
0

看起来boost/asio.hpp没有正确包含。

我不记得确切的前缀选项做什么,但我认为你的问题可能在那里。boost 目录可能不在/usr/include/boost,但可能/usr/boost

这是一种可能性。第二个是/usr/include/boost,你需要通过,而不是通过/usr/include,即

gcc client.cpp -I /usr/include -lboost_system -lboost_thread -lboost_serialization 

如果您查看示例文件,例如 connection.cpp 示例,它包括boost/asio.hpp. 该boost/部分是指编译器应在您使用指定的包含路径中查找的文件夹-I。因此,如果您指定/usr/include/boost,编译器将寻找/usr/include/boost/boost/asio.hpp(注意 2 次出现boost)。

于 2013-04-05T03:09:59.647 回答
0

我想我现在已经解决了这个问题。使用 bjam 和自动安装程序似乎没有太大的作用(由于某种原因它不会解析这些路径)。

无论如何,我下载了 ASIO 源代码(这次没有增强)并将其放在我桌面上的一个目录中。与我在 Visual Studio 中的 Windows 上执行此操作的方式类似,我设法将其链接:

g++ client.cpp -I/home/devbox/desktop/asio-1.5.3/include -   L/home/devbox/Desktop/boost_1_53_0/stage/lib -lboost_system -lboost_thread -lboost_serialization -o test

祝大家欢呼

于 2013-04-05T12:38:57.063 回答