Hi there,
I recently installed kubuntu on my desktop, but my problem is with gcc, I made the following assembly code:
.text
str : .asciz "Test"
.global main
main: movl %esp, %ebp
push $str
call printf
movl $0,(%esp)
call exit
GCC gives the following error:
/usr/bin/Id: ctr1.o No such file: No such file or directory
collect2: Id returned 1 exit status
Does anyone has a suggestion, how to correct the problem ?
I recently installed kubuntu on my desktop, but my problem is with gcc, I made the following assembly code:
.text
str : .asciz "Test"
.global main
main: movl %esp, %ebp
push $str
call printf
movl $0,(%esp)
call exit
GCC gives the following error:
/usr/bin/Id: ctr1.o No such file: No such file or directory
collect2: Id returned 1 exit status
Does anyone has a suggestion, how to correct the problem ?
Comment