Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"global main" in Assembly

I came across this snippet of code:

section .text
    global  main    ;must be declared for linker (gcc)

and then there is a function called main after this line:

main:    ;tell linker entry point

but i don't seem to understand what global main means, and the comment doesn't seem to help much...

i am using this site as a reference to Assembly language programming.

i can analyse that main refers to the function main, but i don't understand the use of the global keyword...

thank you in advance...

like image 747
tenstar Avatar asked Jul 26 '13 13:07

tenstar


1 Answers

global main basically means that the symbol should be visible to the linker because other object files will use it. Without it, the symbol main is considered local to the object file it's assembled to, and will not appear after the assembly file is assembled.

like image 161
Drew McGowen Avatar answered Sep 22 '22 06:09

Drew McGowen