本文介绍了Core Dumped在创建共享库时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的ubuntu 14.04 64位系统上尝试创建共享库时遇到此错误:

I just got this error when I tried to create a shared library within on my ubuntu 14.04 64 bit system:

g++ -Wall -g -Iinclude -c /home/pure/Schreibtisch/TestDLL/src/test.cpp -o obj/Debug/src/test.o

g++ -shared  obj/Debug/src/test.o  -o bin/Debug/TestDLL.so  
collect2: error: ld terminated with signal 6 [Abgebrochen], core dumped
/usr/bin/ld: ld: wcsrtombs.c:99: __wcsrtombs: Zusicherung »data.__outbuf[-1] == '\0'« nicht erfüllt.


我也试图从一个简单的类创建一个简单的共享库有一个空的构造函数和一个空的析构函数,同样的错误来了。

I also tried to make a simple shared library from a simple class with an empty constructor and an empty destructor, same error came.

任何人可以帮助我如何解决这个问题?
如果需要更多信息,我可以告诉他们。

Can anyone help me how to fix that?If more informations are needed, I can tell them.

pure @ pure-QOSMIO-X500:〜$ g ++

pure@pure-QOSMIO-X500:~$ which g++

pure @ pure-QOSMIO-X500 :〜$ g ++ --version

pure@pure-QOSMIO-X500:~$ g++ --version

这样:

LC_ALL = C g ++ -shared /home/pure/Schreibtisch/TestDLL/obj/Debug/src/test.o -o /home/pure/Schreibtisch/TestDLL/libTestDLL.so

现在返回:


推荐答案

我不知道为什么会遇到与您的本机语言环境(德语)语言环境。但是,现在链接器本身告诉你出了什么问题:你没有使用 -fPIC 编译目标代码。

I don't know why you get a crash with your native locale (german) and an useful error message using default locale. However, now the linker itself tells you what's wrong: You didn't compile your object code with -fPIC.

PIC 代表位置无关代码 ,对于共享库是必需的,因为它们在内存中的位置是未知的。例如,使用 -fPIC 生成的代码使用相对跳转,而不是绝对跳转地址。

PIC stands for position independent code and is necessary for shared libraries because their location in memory is not known in advance. For example, code generated with -fPIC uses relative and not absolute addresses for jumps.

这篇关于Core Dumped在创建共享库时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 01:24