简体   繁体   English

AngelScript G++ 链接器错误

[英]AngelScript G++ Linker error

I'm trying to use AngelScript on a 64 bit Linux machine (Linux Mint 14).我正在尝试在 64 位 Linux 机器(Linux Mint 14)上使用 AngelScript。 I have installed the gnuc project that comes with the AngelScript sdk and tried to compile with the following command:我已经安装了 AngelScript sdk 自带的 gnuc 项目,并尝试使用以下命令进行编译:

g++ -fno-strict-aliasing main.cpp -langelscript

This causes the following linker errors:这会导致以下链接器错误:

/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadManager::asCThreadManager()':
as_thread.cpp:(.text+0x12a): undefined reference to `pthread_key_create'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadManager::~asCThreadManager()':
as_thread.cpp:(.text+0x381): undefined reference to `pthread_key_delete'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadManager::CleanupLocalData()':
as_thread.cpp:(.text+0x453): undefined reference to `pthread_getspecific'
as_thread.cpp:(.text+0x4b8): undefined reference to `pthread_setspecific'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadManager::GetLocalData()':
as_thread.cpp:(.text+0x4f7): undefined reference to `pthread_getspecific'
as_thread.cpp:(.text+0x557): undefined reference to `pthread_setspecific'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadCriticalSection::TryEnter()':
as_thread.cpp:(.text+0x6a0): undefined reference to `pthread_mutex_trylock'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::asCThreadReadWriteLock()':
as_thread.cpp:(.text+0x6c5): undefined reference to `pthread_rwlock_init'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::~asCThreadReadWriteLock()':
as_thread.cpp:(.text+0x708): undefined reference to `pthread_rwlock_destroy'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::AcquireExclusive()':
as_thread.cpp:(.text+0x722): undefined reference to `pthread_rwlock_wrlock'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::ReleaseExclusive()':
as_thread.cpp:(.text+0x73c): undefined reference to `pthread_rwlock_unlock'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::AcquireShared()':
as_thread.cpp:(.text+0x756): undefined reference to `pthread_rwlock_rdlock'
/usr/local/lib/libangelscript.a(as_thread.o): In function `asCThreadReadWriteLock::ReleaseShared()':
as_thread.cpp:(.text+0x770): undefined reference to `pthread_rwlock_unlock'
collect2: error: ld returned 1 exit status

It seems a lot of things are undefined.似乎很多东西都没有定义。 I'm thinking it's a problem with the library installation.我认为这是库安装的问题。

AngelScript requires a library to be defined for threading. AngelScript 需要为线程定义一个库。 On GNU/Linux, you can enable this by adding -lpthread to your compilation command, to add Posix Threads.在 GNU/Linux 上,您可以通过在编译命令中添加-lpthread来启用此功能,以添加 Posix 线程。

How to install AngelScript for Linux [Source]如何为 Linux 安装 AngelScript [源代码]

mkdir angelscript
cd angelscript
wget http://www.angelcode.com/angelscript/sdk/files/angelscript_2.22.1.zip
unzip angelscript_*.zip
cd sdk/angelscript/projects/gnuc
SHARED=1 VERSION=2.22.1 make

# sudo make install fails when making the symbolic link, this removes the existing versions
rm -f ../../lib/\*
sudo SHARED=1 VERSION=2.22.1 make install

#cleanup files made by root
rm -f ../../lib/\*
cd ../../../../../

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM