gpt4 book ai didi

opengl - 运行已编译的 C++ 文件时出错(使用 OpenGL)。错误 : “Inconsistency detected by ld.so: dl-version.c: 224”

转载 作者:太空宇宙 更新时间:2023-11-03 16:43:19 24 4
gpt4 key购买 nike

我在 cpp 中创建了一个简单的 opengl 文件。它适用于大学计算机。我可以编译文件,但无法运行编译后的文件。我得到的错误是:

Inconsistency detected by ld.so: dl-version.c: 224: _dl_check_map_versions: Assertion `needed != ((void *)0)' failed!

文件代码为:

    //
// Model.cpp
// cg-projects
//
// Created by HUJI Computer Graphics course staff, 2013.
//

#include "ShaderIO.h"
#include "Model.h"

#include <GL/glew.h>
#ifdef __APPLE__
#include <OpenGL/OpenGL.h>
#else
#include <GL/gl.h>
#endif

#include <glm/glm.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "glm/gtc/matrix_transform.hpp"

#define SHADERS_DIR "shaders/"

Model::Model() :
_vao(0), _vbo(0)
{

}

Model::~Model()
{
if (_vao != 0)
glDeleteVertexArrays(1, &_vao);
if (_vbo != 0)
glDeleteBuffers(1, &_vbo);
}

void Model::init()
{
programManager::sharedInstance()
.createProgram("default",
SHADERS_DIR "SimpleShader.vert",
SHADERS_DIR "SimpleShader.frag");

GLuint program = programManager::sharedInstance().programWithID("default");

// Obtain uniform variable handles:
_fillColorUV = glGetUniformLocation(program, "fillColor");

// Initialize vertices buffer and transfer it to OpenGL
{
// For this example we create a single triangle:
const float vertices[] = {
0.75f, 0.75f, 0.0f, 1.0f,
0.75f, -0.75f, 0.0f, 1.0f,
-0.75f, -0.75f, 0.0f, 1.0f,
};

// Create and bind the object's Vertex Array Object:
glGenVertexArrays(1, &_vao);
glBindVertexArray(_vao);

// Create and load vertex data into a Vertex Buffer Object:
glGenBuffers(1, &_vbo);
glBindBuffer(GL_ARRAY_BUFFER, _vbo);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);

// Tells OpenGL that there is vertex data in this buffer object and what form that vertex data takes:

// Obtain attribute handles:
_posAttrib = glGetAttribLocation(program, "position");
glEnableVertexAttribArray(_posAttrib);
glVertexAttribPointer(_posAttrib, // attribute handle
4, // number of scalars per vertex
GL_FLOAT, // scalar type
GL_FALSE,
0,
0);

// Unbind vertex array:
glBindVertexArray(0);
}
}

void Model::draw()
{
// Set the program to be used in subsequent lines:
GLuint program = programManager::sharedInstance().programWithID("default");
glUseProgram(program);

GLenum polygonMode = GL_LINE; // Also try using GL_FILL and GL_POINT
glPolygonMode(GL_FRONT_AND_BACK, polygonMode);

// Set uniform variable with RGB values:
float red = 0.3f; float green = 0.5f; float blue = 0.7f;
glUniform4f(_fillColorUV, red, green, blue, 1.0);

// Draw using the state stored in the Vertex Array object:
glBindVertexArray(_vao);

size_t numberOfVertices = 3;
glDrawArrays(GL_TRIANGLES, 0, numberOfVertices);

// Unbind the Vertex Array object
glBindVertexArray(0);

// Cleanup, not strictly necessary
glUseProgram(0);
}

void Model::resize(int width, int height)
{
_width = width;
_height = height;
_offsetX = 0;
_offsetY = 0;
}

我正在使用 ubuntu 13.10。

最佳答案

一些 Ubuntu 13.10 sw 更新似乎改变了一些东西。我也有编译和运行没有问题的代码,就在有一天我开始得到同样的断言‘needed != ((void *)0)’失败了!错误,但前提是我使用当前的 gcc/lib 版本再次编译我的代码。

调试后发现assert错误来自/lib/i386-linux-gnu/ld-2.17.so

      struct link_map *needed = find_needed (strtab + ent->vn_file, map);

/* If NEEDED is NULL this means a dependency was not found
and no stub entry was created. This should never happen. */
assert (needed != NULL);

据说这永远不应该发生,也没有说需要但找不到的东西。一些 gdb 工作,我发现它需要 libpthread.so.0 。好问题是为什么/usr/bin/ld 链接器链接应用程序和 ld.so 不同意这个库的需要。

我没有故意使用 libpthread,但从某个地方我得到了我的链接映射引用 __pthread_key_create@@GLIBC_2.0 我不知道这是从哪里来的,但它可能会导致需要 libpthread.so 而没有添加 NEEDED libpthread.so。 0 在 objdump -p 上如下:

Dynamic Section:
NEEDED libglut.so.3
NEEDED libGLU.so.1
NEEDED libGL.so.1
NEEDED libstdc++.so.6
NEEDED libgcc_s.so.1
NEEDED libpthread.so.0
NEEDED libc.so.6

我没有找到此问题的根本原因,但至少找到了解决方法。您需要将您的代码与 -pthread 选项链接起来,并对这个库进行一些虚拟调用。

在你的 Makefile 库中定义

 -lglut -lGLU -lGL -lm  -pthread

然后包含一些虚拟函数,只需引用一些 libpthread 函数,使链接器链接它,您就会得到所需的 libpthread.so.0,然后 ld.so 就可以了。

#include <pthread.h>
void junk() {
int i;
i=pthread_getconcurrency();
};

这对我有帮助,我希望它能有所帮助。

在Ubuntu launcpad中有更多的分析 https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1248642?comments=all

关于opengl - 运行已编译的 C++ 文件时出错(使用 OpenGL)。错误 : “Inconsistency detected by ld.so: dl-version.c: 224” ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20007961/

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