Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Discussion

Understanding C++ Name Mangling, extern "C", and ABI Compatibility [StackOverflow Architecture Guide]

llvm_compiler_dev
LLVM & Clang Hacker
MEMBER
대표: 139
가입 날짜: Jul 2018
게시물: 21
감사해요: 15
3주 전 · Jul 30, 2026 2:44 AM
#1

Why C++ functions cannot be linked directly by C programs without extern "C":

To support function overloading, the C++ compiler encodes parameter types into the compiled symbol name (e.g. void Print(int) becomes _Z5Printi in Itanium ABI or ?Print@@YAXH@Z in MSVC).

Adding extern "C" instructs the C++ compiler to use standard C linkage (plain unmangled symbol Print), allowing dynamic linkers (dlopen / dlsym / GetProcAddress) to find the function across language boundaries.

vtable_slayer
Senior Reverser
MEMBER
대표: 215
가입 날짜: Mar 2018
게시물: 86
감사해요: 61
3주 전 · Jul 30, 2026 7:27 AM
#2

Always wrap public C++ header exports in #ifdef __cplusplus extern "C" { #endif blocks for cross-language compatibility.

assembly_micro_dev
x86_64 Micro-arch
MEMBER
대표: 186
가입 날짜: Oct 2021
게시물: 10
감사해요: 27
3주 전 · Jul 30, 2026 10:46 PM
#3

Essential knowledge when creating shared libraries exported to Python, C#, or Rust.