How to statically link libstdc++(如何静态链接 libstdc++)
问题描述
我试图让我的程序在另一台 libstdc++ 版本不同的机器上运行.我正在netbeans上开发和编译它.我已指定选项 -static-libstdc++ 但程序继续尝试在本地机器中加载 libstdc++.so.6.
I am trying to get my program working in another machine where libstdc++ versions is different. I am developing and compiling it on netbeans. I have specified the option -static-libstdc++ but the program continues trying to load libstdc++.so.6 in the local machine.
如何获得完全静态的 libstdc++ 链接?
How can I get a fully static libstdc++ link?
谢谢.
推荐答案
我不确定这里的确切情况,但我刚刚在不同版本的 Mac OS X 和 gcc 中遇到了类似的问题.我通过将我想要的实际 dylib 复制到与可执行文件相同的目录中并更改 DYLD_LIBRARY_PATH
使其在/usr/lib 之前首先在那里搜索来解决它.
Not sure of the exact circumstances here, but I ran into a similar problem just now with different versions of Mac OS X and gcc. I worked around it by copying the actual dylib I wanted into the same directory as the executable and changing DYLD_LIBRARY_PATH
to have it search there first before /usr/lib.
这篇关于如何静态链接 libstdc++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何静态链接 libstdc++


- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- 将 hdc 内容复制到位图 2022-09-04
- 如何提取 __VA_ARGS__? 2022-01-01
- DoEvents 等效于 C++? 2021-01-01
- GDB 不显示函数名 2022-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01
- XML Schema 到 C++ 类 2022-01-01