1. version `GLIBCXX_3.4.14' not found 问题
1.1 现象
目标机器上运行./hello,报告: /lib/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by ./hello)
1.2 解决
交叉编译机器:
strings libc/usr/lib/libstdc++.so.6.0.14 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_FORCE_NEW
GLIBCXX_DEBUG_MESSAGE_LENGTH
目标机器:
strings /lib/libstdc++.so.6 | grep GLIBC
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBC_2.4
GLIBCXX_FORCE_NEW
GLIBCXX_DEBUG_MESSAGE_LENGTH
判断是目标机器上的版本比较老,静态链接(打开 -static选项), 问题解决
2. shared_ptr.h:61:46: error: '_Lock_policy' has not been declared 问题
2.1 现象
加入#include<shared_ptr.h>, 编译,报告 version `GLIBCXX_3.4.14' not found, 及/usr/include/c++/4.4.3/tr1/shared_ptr.h:61:46: error: '_Lock_policy' has not been declared 等一大堆问题
2.2 解决
求助度娘,在http://stackoverflow.com/questions/5170670/include-tr1shared-ptr有说要
#include <memory>
1.1 现象
目标机器上运行./hello,报告: /lib/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by ./hello)
1.2 解决
交叉编译机器:
strings libc/usr/lib/libstdc++.so.6.0.14 | grep GLIBCXX
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_FORCE_NEW
GLIBCXX_DEBUG_MESSAGE_LENGTH
目标机器:
strings /lib/libstdc++.so.6 | grep GLIBC
GLIBCXX_3.4
GLIBCXX_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBC_2.4
GLIBCXX_FORCE_NEW
GLIBCXX_DEBUG_MESSAGE_LENGTH
判断是目标机器上的版本比较老,静态链接(打开 -static选项), 问题解决
2. shared_ptr.h:61:46: error: '_Lock_policy' has not been declared 问题
2.1 现象
加入#include<shared_ptr.h>, 编译,报告 version `GLIBCXX_3.4.14' not found, 及/usr/include/c++/4.4.3/tr1/shared_ptr.h:61:46: error: '_Lock_policy' has not been declared 等一大堆问题
2.2 解决
求助度娘,在http://stackoverflow.com/questions/5170670/include-tr1shared-ptr有说要
#include <memory>
加入memory声明, 问题解决