From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/6792 Path: news.gmane.org!not-for-mail From: Isaac Dunham Newsgroups: gmane.linux.lib.musl.general,gmane.comp.compilers.pcc Subject: Re: [Pcc] pcc i386 -fPIC compiler error on src/complex/catanf.c Date: Mon, 5 Jan 2015 15:25:57 -0800 Message-ID: <20150105232556.GA1781@newbook> References: <20150104055311.GA1776@newbook> <54A99386.7070504@ludd.ltu.se> <20150104210403.GA1801@newbook> <54AA67EF.8000104@ludd.ltu.se> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1420500406 21522 80.91.229.3 (5 Jan 2015 23:26:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 5 Jan 2015 23:26:46 +0000 (UTC) Cc: musl@lists.openwall.com, pcc@lists.ludd.ltu.se To: Anders Magnusson Original-X-From: musl-return-6805-gllmg-musl=m.gmane.org@lists.openwall.com Tue Jan 06 00:26:39 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Y8H2F-0004Mp-1U for gllmg-musl@m.gmane.org; Tue, 06 Jan 2015 00:26:07 +0100 Original-Received: (qmail 26193 invoked by uid 550); 5 Jan 2015 23:26:04 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 26183 invoked from network); 5 Jan 2015 23:26:04 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=tPirAZJMflBQHwJwnw3+8N90/eQwt78qSNA5naO2ubY=; b=P44jms3DSAc4G4eBQtp/1mYKLmfZgGeaPa25k+Gi2SJ9sse0tYSQqvAywG7UVHG/jW BNkEnNp/eqPNk2p3QJlKrjAHfFaUbVSmH3LDNZewFCe8K7Mt2t7spaBLbv3iYAx+PVCA kBHCzhYVOsbyU3BUqXLSLCC9ZDwKiML3gG4tScjpirBuCo/gf2KVfjfUn2g8qs+dj9jD paWGhXNoXfXQF5cx9XBmC1uq5mU7ZtiOQBUSzUamgXkEiY7jQa4UXJQCT/FdT+BjM5wK Zfi7SB0HiG7zbxOrXyLFeuYFDUurR/vrNZfpCaZqmvrGFOBlWaEh4Zukbq5pJhq4LKvl Hr5g== X-Received: by 10.68.239.102 with SMTP id vr6mr126346700pbc.35.1420500352812; Mon, 05 Jan 2015 15:25:52 -0800 (PST) Content-Disposition: inline In-Reply-To: <54AA67EF.8000104@ludd.ltu.se> User-Agent: Mutt/1.5.23 (2014-03-12) Xref: news.gmane.org gmane.linux.lib.musl.general:6792 gmane.comp.compilers.pcc:3348 Archived-At: On Mon, Jan 05, 2015 at 11:31:11AM +0100, Anders Magnusson wrote: > Thanks, fixed now. > Float complex struct return were not dealt with as it should in the PIC > case. > Thank you, but I'm afraid that now I'm getting another error for most code when I compile with -fPIC: $ pcc -fPIC argvname.c -o argvname /tmp/ctm.HhEooN: Assembler messages: /tmp/ctm.HhEooN:1: Error: no such instruction: `pucext' /tmp/ctm.HhEooN:2: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:3: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:4: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:5: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:6: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:7: Error: junk at end of line, first unrecognized character is `0' /tmp/ctm.HhEooN:8: Error: junk at end of line, first unrecognized character is `0' error: as terminated with status 1 argvname.c is a trivial example, as follows: #include int main(int argc, char *argv[]) { puts(argv[0]); } EOF I'm getting the impression that this was debugging code dumping some of the compiler state (at line 174, arch/i386/local.c). Is that correct? Thanks, Isaac Dunham