gpt4 book ai didi

c++ - SFML 未定义对 `sf::TcpSocket::TcpSocket()' 的引用

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:11:44 27 4
gpt4 key购买 nike

我正在尝试编译 SFML 简单代码:

#include <iostream>
#include <string>
#include <SFML/System.hpp>
#include <SFML/Network.hpp>

using namespace std;

int main(int argc, char* argv[])
{

sf::TcpSocket socket;
sf::Socket::Status status = socket.connect("127.0.0.1", 6000);
if (status != sf::Socket::Done)
{
// error...
}
return 0;
}

已安装所有库和依赖项:

sudo apt-get install libsfml-dev
sudo apt-get build-dep libsfml

我正在使用两种方法:

g++ -c main.cpp
g++ -o main main.o -std=c++11 -lsfml-graphics -lsfml-window -lsfml-system

g++ -c main.cpp -I/home/x64joxer/SFML-2.4.0/include
g++ -o main main.o -L/home/x64joxer/SFML-2.4.0/lib -std=c++11 -lsfml-graphics -lsfml-window -lsfml-system

但是我还是遇到了同样的问题:

main.o: In function `main':
main.cpp:(.text+0x27): undefined reference to `sf::TcpSocket::TcpSocket()'
main.cpp:(.text+0x38): undefined reference to `sf::IpAddress::IpAddress(char const*)'
main.cpp:(.text+0x54): undefined reference to `sf::TcpSocket::connect(sf::IpAddress const&, unsigned short, sf::Time)'
main.o: In function `sf::TcpSocket::~TcpSocket()':
main.cpp:(.text._ZN2sf9TcpSocketD2Ev[_ZN2sf9TcpSocketD5Ev]+0x30): undefined reference to `sf::Socket::~Socket()'
main.cpp:(.text._ZN2sf9TcpSocketD2Ev[_ZN2sf9TcpSocketD5Ev]+0x56): undefined reference to `sf::Socket::~Socket()'
main.o:(.rodata._ZTIN2sf9TcpSocketE[_ZTIN2sf9TcpSocketE]+0x10): undefined reference to `typeinfo for sf::Socket'
collect2: error: ld returned 1 exit status

我在论坛上看了很多教程和主题,但我仍然不知道如何解决它。我的系统是 Kubntu 15。有谁知道怎么解决吗?

最佳答案

您正在与 graphicssystemwindow 链接,但没有与 network 链接。您是否尝试添加 -lsfml-network

关于c++ - SFML 未定义对 `sf::TcpSocket::TcpSocket()' 的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40315947/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com