我有一些问题试图使用c 0x线程功能静态链接程序.代码看起来这样((Compiler是
gcc 4.6.1在Debian x86_64测试)
#include <iostream> #include <thread> static void foo() { std::cout << "FOO BAR\n"; } int main() { std::thread t(foo); t.join(); return 0; }
我链接到:
g++ -static -pthread -o t-static t.cpp -std=c++0x
当我执行程序时,我有以下错误:
terminate called after throwing an instance of 'std::system_error' what(): Operation not permitted Aborted
GDB调试输出如下所示:
Debugger finished Current directory is ~/testspace/thread/ GNU gdb (GDB) 7.2-debian Copyright (C) 2010 Free Software Foundation,Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY,to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". For bug reporting instructions,please see: <http://www.gnu.org/software/gdb/bugs/>... Reading symbols from /home/will/testspace/thread/t-static...done. (gdb) list - 1 #include <iostream> (gdb) b 1 Breakpoint 1 at 0x4007c8: file t.cpp,line 1. (gdb) r Starting program: /home/will/testspace/thread/t-static terminate called after throwing an instance of 'std::system_error' what(): Operation not permitted Program received signal SIGABRT,Aborted. 0x00000000004a8e65 in raise () (gdb) bt #0 0x00000000004a8e65 in raise () #1 0x000000000045df90 in abort () #2 0x000000000044570d in __gnu_cxx::__verbose_terminate_handler() () #3 0x0000000000442fb6 in __cxxabiv1::__terminate(void (*)()) () #4 0x0000000000442fe3 in std::terminate() () #5 0x0000000000443cbe in __cxa_throw () #6 0x0000000000401fe4 in std::__throw_system_error(int) () #7 0x00000000004057e7 in std::thread::_M_start_thread(std::shared_ptr<std::thread::_Impl_base>) () #8 0x0000000000400b18 in std::thread::thread<void (&)()> (this=0x7fffffffe540,__f=@0x4007c4) at /usr/include/c++/4.6/thread:135 #9 0x00000000004007f3 in main () at t.cpp:11 (gdb)
更新:
与静态libstdc链接可能(可能)使此错误消失,并且编译的C 0x程序可以在没有gcc 4.6 libs的系统上运行:
g++ -static-libgcc -pthread -L.-o t thread.cpp -std=c++0x
但是,首先,我们应该在当前目录下创建一个符号链接到“libstdc .a”:
ln -s `g++ -print-file-name=libstdc++.a`
(参考:http://www.trilithium.com/johan/2005/06/static-libstdc/)