S SearchRSS
< BackHome
Newest questions tagged c++ - Stack Overflow

Why do register_tm_clones and deregister_tm_clones get tacked on to simple programs?

If I build a simple program: int main() { return 123; } with g++ -O3 -o my_program my_program.cpp on my Devuan GNU/Linux system. The resulting executable contains the (compiled equivalent of) the following: void deregis

View original source