From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9496 Path: news.gmane.org!not-for-mail From: John Found Newsgroups: gmane.linux.lib.musl.general Subject: Re: Problem with musl-gcc script. Is it bad installation? Date: Sun, 6 Mar 2016 03:02:30 +0200 Message-ID: <20160306030230.cedf8eded77c37ec1d450f3c@asm32.info> References: <20160306002823.09d603d7c3d8fe4b0f4b15c1@asm32.info> <20160306003609.GO9349@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1457226219 13900 80.91.229.3 (6 Mar 2016 01:03:39 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 6 Mar 2016 01:03:39 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-9509-gllmg-musl=m.gmane.org@lists.openwall.com Sun Mar 06 02:03:31 2016 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 1acN6Y-0001OV-Q8 for gllmg-musl@m.gmane.org; Sun, 06 Mar 2016 02:03:30 +0100 Original-Received: (qmail 9552 invoked by uid 550); 6 Mar 2016 01:03:29 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 9525 invoked from network); 6 Mar 2016 01:03:28 -0000 In-Reply-To: <20160306003609.GO9349@brightrain.aerifal.cx> X-Mailer: Sylpheed 3.5.0 (GTK+ 2.24.29; x86_64-unknown-linux-gnu) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hemus.superhosting.bg X-AntiAbuse: Original Domain - lists.openwall.com X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - asm32.info X-Get-Message-Sender-Via: hemus.superhosting.bg: authenticated_id: johnfound@asm32.info X-Authenticated-Sender: hemus.superhosting.bg: johnfound@asm32.info X-Source: X-Source-Args: X-Source-Dir: Xref: news.gmane.org gmane.linux.lib.musl.general:9496 Archived-At: On Sat, 5 Mar 2016 19:36:09 -0500 Rich Felker wrote: > The musl-gcc script is limited in its usefulness, and was not really > designed/tested for repurposing an existing x86_64 gcc as an i386-musl > one. You should be able to make it work though by editing the musl-gcc > script to remove the double quotes around "${REALGCC:-...}". If that > works for you, this is possibly a change we should make upstream. > > Rich After the suggested change, I can start musl-gcc and it even accepts some commands as --help But trying to use it with ./configure script again fails with: checking for gcc... musl-gcc checking whether the C compiler works... no configure: error: in `/work/cwork/SQLite/sqlite-autoconf-3110100': configure: error: C compiler cannot create executables See `config.log' for more details In the config.log I found the following: configure:3234: musl-gcc conftest.c >&5 /usr/bin/ld: skipping incompatible /usr/local/musl/lib/libc.so when searching for -lc /usr/bin/ld: skipping incompatible /usr/local/musl/lib/libc.a when searching for -lc /usr/bin/ld: cannot find -lc collect2: error: ld returned 1 exit status configure:3238: $? = 1 configure:3276: result: no configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "sqlite" | #define PACKAGE_TARNAME "sqlite" | #define PACKAGE_VERSION "3.11.1" | #define PACKAGE_STRING "sqlite 3.11.1" | #define PACKAGE_BUGREPORT "http://www.sqlite.org" | #define PACKAGE_URL "" | #define PACKAGE "sqlite" | #define VERSION "3.11.1" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } Regards -- http://fresh.flatassembler.net http://asm32.info John Found