


Why does statically linking pthread with g lead to a segmentation fault, and how can I resolve it using the `--whole-archive` option?
When g statically links pthread, causing Segmentation fault, why?
In static linking, the linker will stop at the first symbol, even if it is a weak one, and stops looking for strong ones. To force it to look at all symbols (like it would have done for a dynamically linked library), ld supports the --whole-archive option.
The following command will work:
g++ -o one one.cpp -Wall -std=c++11 -O3 -static -pthread \ -Wl,--whole-archive -lpthread -Wl,--no-whole-archive
Here's what's happening:
- -pthread implies linking against pthread (and depending on the platform, it does define extra macros like -D_REENTRANT).
- Even if -pthread implies linking against -lpthread, you still need to specify -lpthread explicitly while statically linking.
- Wl,--whole-archive forces the linker to include every object file in the archive in the link, rather than searching the archive for the required object files.
- Wl,--no-whole-archive turns off the effect of the --whole-archive option for subsequent archive files.
Understanding weak symbols
ELF file format has the concept of weak and strong symbols. By default, symbols in an object file are strong. During linking, a strong symbol can override a weak symbol of the same name.
In the case of glibc and pthreads, they use weak symbols. For example, fputc is required by POSIX to be thread-safe and needs to be synchronized, which is costly. In a single-threaded environment, you do not want to pay these costs. An implementation could therefore implement the synchronization functions as empty stubs, and declare the functions as weak symbols.
Later, if a multi-threading library is linked (e.g., pthread), it becomes obvious that single-thread support is not intended. When linking the multi-threading library, the linker can then replace the stubs by the real synchronization functions (defined as strong symbols and implemented by the threading-library).
Applying this to the example program
The libc.a library contains __pthread_mutex_lock as a weak symbol, and the libpthread.a library contains it as a strong symbol. When linking dynamically, the linker replaces the weak symbol with the strong symbol. However, when linking statically, you need to enforce the same semantic. That's why -Wl,--whole-archive -lpthread -Wl,--no-whole-archive is needed.
The above is the detailed content of Why does statically linking pthread with g lead to a segmentation fault, and how can I resolve it using the `--whole-archive` option?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Gulc is a high-performance C library prioritizing minimal overhead, aggressive inlining, and compiler optimization. Ideal for performance-critical applications like high-frequency trading and embedded systems, its design emphasizes simplicity, modul

This article details C function return types, encompassing basic (int, float, char, etc.), derived (arrays, pointers, structs), and void types. The compiler determines the return type via the function declaration and the return statement, enforcing

This article explains C function declaration vs. definition, argument passing (by value and by pointer), return values, and common pitfalls like memory leaks and type mismatches. It emphasizes the importance of declarations for modularity and provi

This article details C functions for string case conversion. It explains using toupper() and tolower() from ctype.h, iterating through strings, and handling null terminators. Common pitfalls like forgetting ctype.h and modifying string literals are

This article examines C function return value storage. Small return values are typically stored in registers for speed; larger values may use pointers to memory (stack or heap), impacting lifetime and requiring manual memory management. Directly acc

This article analyzes the multifaceted uses of the adjective "distinct," exploring its grammatical functions, common phrases (e.g., "distinct from," "distinctly different"), and nuanced application in formal vs. informal

This article explains the C Standard Template Library (STL), focusing on its core components: containers, iterators, algorithms, and functors. It details how these interact to enable generic programming, improving code efficiency and readability t

This article details efficient STL algorithm usage in C . It emphasizes data structure choice (vectors vs. lists), algorithm complexity analysis (e.g., std::sort vs. std::partial_sort), iterator usage, and parallel execution. Common pitfalls like
