2018-04-07 09:36 AM
Hello,
Into the startup assembly file there is a call to the __libc_init_array procedure, and i would like to know :
Thanks.
#startup #c #libc_init_array2018-04-07 04:06 PM
Typically C++ constructors, ie initialize globally defined classes.
If you have such things it would be critical to initialize them properly if you expect your code to function correctly.
You could presumably use the disassembly listing to see what the code does, and if it is working it's way through an initialization array.
2018-04-07 07:30 PM
So, if i only use C language i don't have to call this function ? Thanks