Different instruction address shown in ltrace and objdump
Advertisements I use ltrace and objdump to analyse the simple code below. But I find there is a difference on instruction address shown between ltrace and objdump. #include <iostream> int main() { std::cout << "Hello"; return 0; } As the following info, you can see that the address of [call std::basic_ostream] is [0x400789] in ltrace.… Read More Different instruction address shown in ltrace and objdump