X-Spam-Check-By: sourceware.org
Message-ID: <4510EC58.188C303D@dessent.net>
Date: Wed, 20 Sep 2006 00:23:04 -0700
From: Brian Dessent <brian@dessent.net>
X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U)
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: Linking Assembly Code - Can't resolve printf
References: <001d01c6dc83$fd77ef40$6cc027a0@davidiandesktop>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Reply-To: cygwin@cygwin.com
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

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/

