Linking Assembly Code - Can't resolve printf

Brian Dessent brian@dessent.net
Wed Sep 20 07:23:00 GMT 2006


David Lariviere wrote:

>         movl $0, %ebx
>         movl $1, %eax
>         int $0x80
> ...
> 
> I've tried linking in numerous libraries, hoping one would resolve printf,
> and in numerous order of where to include the -lxxx, but I can't get it to
> compile. I've also tried it on numerous computers, including those with a
> first-time fresh install of cygwin. Compiling a simple helloworld C program
> works fine.

Even if you were able to resolve printf this code will never work.  Int
0x80 is how syscalls work on linux but it is completely different under
Windows.  Cygwin offers API not ABI compatibility.

Brian

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list