From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/13432 Path: news.gmane.org!.POSTED!not-for-mail From: argante Newsgroups: gmane.linux.lib.musl.general Subject: Re: using musl-cross-make to build host gcc Date: Sun, 11 Nov 2018 14:23:56 +0000 Message-ID: References: <20181111141331.GB15979@voyager> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1541946127 3985 195.159.176.226 (11 Nov 2018 14:22:07 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 11 Nov 2018 14:22:07 +0000 (UTC) To: "musl@lists.openwall.com" Original-X-From: musl-return-13448-gllmg-musl=m.gmane.org@lists.openwall.com Sun Nov 11 15:22:03 2018 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1gLqck-0000vY-HM for gllmg-musl@m.gmane.org; Sun, 11 Nov 2018 15:22:02 +0100 Original-Received: (qmail 32043 invoked by uid 550); 11 Nov 2018 14:24:11 -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 32022 invoked from network); 11 Nov 2018 14:24:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pm.me; s=proton; t=1541946239; bh=GYL13qUSyRld2EgjApDtO+HpG9H30JulnuCLwySmTUY=; h=Date:To:From:Reply-To:Subject:In-Reply-To:References:Feedback-ID: From; b=ZYtfBCL0BidI39pZdvXDgNQjuPSzxM2RILVPM1eeZdChd/OQUPuS/eIi25WxdAWRF d2GQtxOMJFLuRRVudka6koT6BBOQ9AobRsc+Yi6XBn1hrtcojAloxj9t469c/fQlXT yRFJMvna1/sv3ZgO0fiI3uln/T+SG9Z1QSNG/DEhYIQsuMElLToVYFX5pRGxMOJd50 XVE7Oe/oIDjSpYeLA4EbWu+LoSiu91CAgLmWAX40KZCYstnbNdIyFYs7Tr90or2Va6 qAvXy+/J+EEq7H3mdaFTL8AkmD4FCdzEU5e9zxr3fSgjJkkCrMUcN9RRCwU2kuP3Y3 cRad70FHaJDKA== In-Reply-To: <20181111141331.GB15979@voyager> Feedback-ID: sj1YN_iN560_iv4ir5EpCpCFj2RELVzNnBQpDIwMoUMNXowIBSidTdxSWFyLT3J_uOeJsE1taahISy929bGTAA==:Ext:ProtonMail Xref: news.gmane.org gmane.linux.lib.musl.general:13432 Archived-At: > Hi, > > look into config.log. It will tell you what really went on. If you see > an error from configure, then a configure check failed. Likely some > header file behaving differently than what they expected, justified or > not. > > Ciao, > Markus # cat /tmp/ports/gcc/work/gcc-7.3.0/host-x86_64-linux-musl/gcc/config.log language_hooks=3D'' option_includes=3D'' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define __EXTENSIONS__ 1 #define _ALL_SOURCE 1 #define _GNU_SOURCE 1 #define _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define SIZEOF_VOID_P 0 #define SIZEOF_SHORT 0 #define SIZEOF_INT 0 #define SIZEOF_LONG 0 #define HAVE_LONG_LONG 1 configure: exit 77 As you can see, the sizeof for types is incorrectly set to 0. config.log do= es not add anything to what I wrote earlier.