make startup code PIE-compatible

This commit is contained in:
Rich Felker 2011-02-21 22:26:31 -05:00
parent cfcbea1e43
commit e2ee1bdd8d
1 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,8 @@ _start:
pushl %ebp
pushl %eax
pushl %ecx
pushl $main
call 1f
1: addl $[main-.],(%esp)
//pushl $main
call __libc_start_main
.L0: jmp .L0
1: jmp 1b