> 0x08048700 in _init > . > . > 0x08048706 in _dl_runtime_resolve > . > . > 0x4000b014 in fixup > . > . > 0x4000b022 in _dl_build_local_scope > . > 0x40006ec0 in _dl_lookup_symbol_internal > > 0x40006cd0 in _dl_unload_cache_internal > > *Why I got such thing?
This is a backtrace of ELF symbol fixup, it takes place inside /lib/ld-linux.so What are you using to get this? If you use winedbg, then use the "c" command a couple of times until the program starts. Alternatively, run the program as normal until you reach the part you want to debug, then use the attach command (this is what I do, as my program barfs when run in the debugger).
