python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
how to get the arm instruction disassembly of Global Offset Table (GOT) and plt
I am trying to generate the disassembly of dhrystone. The following commands were used:
aarch64-none-linux-gnu-gcc -O0 -mtune=cortex-a77 -mcpu=cortex-a77 --static -c -DHZ=60 -O2 -fno-inline -fno-pie d...

Tom Jose
Votes: 0
Answers: 0
How do I find out where main() is defined in a big project?
Let's say I have the following program (a.c):
#include <stdio.h>
void f()
{
printf("Hello, world!");
}
int main(void)
{
f();
return 0;
}
$ gcc -g a.c
Having a.out, how ...
x-yuri
Votes: 0
Answers: 2