Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jan 1998 00:23:13 +0100
From:      Stefan Esser <se@FreeBSD.ORG>
To:        The Hermit Hacker <scrappy@hub.org>
Cc:        freebsd-hackers@FreeBSD.ORG
Subject:   Re: Wine 980104 assembler error
Message-ID:  <19980105002313.50740@mi.uni-koeln.de>
In-Reply-To: <Pine.NEB.3.96.980104170809.235d-100000@thelab.hub.org>; from The Hermit Hacker on Sun, Jan 04, 1998 at 05:10:28PM -0400
References:  <Pine.NEB.3.96.980104170809.235d-100000@thelab.hub.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 1998-01-04 17:10 -0400, The Hermit Hacker <scrappy@hub.org> wrote:
> 
> Hi...
> 
> 	When compiling Wine 980104, I get the following error:
> 
> gcc -c -o commdlg.o commdlg.s
> commdlg.s: Assembler messages:
> commdlg.s:156: Error: Unknown pseudo-op:  `.string'
> *** Error code 1
> 
> 
> 	Which I'm is:
> 
> DLLName:        .string "COMMDLG\0"
>         .align 4
>         .globl _COMMDLG_Descriptor
> 
> 	Now, I don't know assembler, which is what this is (right?) ... 
> what should this be under FreeBSD?  Is there an equivalent?

You should be able to use .ascii instead of .string.

Since the .s files are created from .spec files by "build",
you need to replace the two occurances of .string by .ascii
in tools/build.c.

Regards, STefan



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980105002313.50740>