我试图让SFML在LinuxMint 18上工作,即Cinnamon版本,但每当我使用 sf :: RenderWindow 时,我都会遇到分段错误。
我通过从官方网站下载64位Linux版本来安装SFML 2.4.2 sudo apt-get install libsfml-dev 奇怪的是没有安装库。
使用不同的东西,比如sf :: Clock非常好用。 我使用了SFML网站上的代码,发布在下面:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
有什么建议吗?
编辑:我没有在任何虚拟机中运行Linux Mint。我使用Windows 10进行双重启动。此外,分段错误恰好是无效的指针错误。