From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32307 invoked by alias); 27 Jul 2016 18:11:46 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 32250 invoked by uid 89); 27 Jul 2016 18:11:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy=Looks, U*crossgcc, ANDY, Mulvad X-HELO: mail-pf0-f176.google.com Received: from mail-pf0-f176.google.com (HELO mail-pf0-f176.google.com) (209.85.192.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 27 Jul 2016 18:11:35 +0000 Received: by mail-pf0-f176.google.com with SMTP id y134so13187074pfg.0 for ; Wed, 27 Jul 2016 11:11:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:mime-version:from:in-reply-to:date:cc :message-id:references:to; bh=IGUkMDoNgV8+JA4kzPscss6tD2lNmmLUocOeSV3VifM=; b=YQD+qS1W3HQQBN7LuynSs43874MPStkIIyCAd1f691IPnoTD1xFAtp7+QIZDQLo9Sv J0UvUzZ5MYYM6m2ZdaMKuVhPgbFVjlrKSjKpSe3fkSowBhYQIsbpQRSeoivv54jT0lfZ LydQ0U4ngZRHEtXnAqTC9/4/qGcOzsxRln3Oszs5n37kn3hr5EXqfyzP8K0dcIqJbflz qrOjpGjngW3s3UKgs2v3XmAos3waH6Tjz/WrIo1vitiink2aVkyLhjBIcFYTzwRsRSS9 +jTRZu313ZnWjIh5uAPqNxN5nRV0qUn4dJRIfdEgOM41xthshPfC/tZ7iqVLtRxgc8eW e4FQ== X-Gm-Message-State: AEkoouv4JoaJC0YT9xM5GRS48s/jsEJ8hRvKpGJudOWZI79tCv2DWGa2HeoszqYo9oX0vw== X-Received: by 10.98.56.207 with SMTP id f198mr51617059pfa.83.1469643093119; Wed, 27 Jul 2016 11:11:33 -0700 (PDT) Received: from shm-mbp.fios-router.home (wsip-98-189-211-66.oc.oc.cox.net. [98.189.211.66]) by smtp.gmail.com with ESMTPSA id l191sm10786359pfc.91.2016.07.27.11.11.31 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 27 Jul 2016 11:11:31 -0700 (PDT) Subject: Re: GDB build failure from tip Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Content-Type: multipart/signed; boundary="Apple-Mail=_3D57CE24-C0D9-4671-832B-34F48461450A"; protocol="application/pgp-signature"; micalg=pgp-sha512 X-Pgp-Agent: GPGMail From: Stefan Hallas Mulvad In-Reply-To: Date: Wed, 27 Jul 2016 18:11:00 -0000 Cc: "crossgcc@sourceware.org" Message-Id: References: <016D099B-EDBA-4F00-89B4-0BC50E95A99E@hallas.nu> To: ANDY KENNEDY X-SW-Source: 2016-07/txt/msg00008.txt.bz2 --Apple-Mail=_3D57CE24-C0D9-4671-832B-34F48461450A Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Content-length: 2112 Hi Andy, Sorry, should have mentioned that - glad it worked out ;=3D) Best regards, Stefan > On Jul 27, 2016, at 10:31 AM, ANDY KENNEDY wrot= e: >=20 > Stefan, >=20 > Thanks! That did work (after I saved the file -- you didn't > tell me I had to make the change AND save the file ;)). >=20 > Andy >=20 >> -----Original Message----- >> From: crossgcc-owner@sourceware.org [mailto:crossgcc-owner@sourceware.or= g] On Behalf Of ANDY KENNEDY >> Sent: Tuesday, July 26, 2016 7:13 PM >> To: 'Stefan Hallas Mulvad' >> Cc: crossgcc@sourceware.org >> Subject: RE: GDB build failure from tip >>=20 >> Stefan, >>=20 >> Looks like I was seriously confused on the below... >>=20 >> So, I guess the below "CROSS_STATIC" means the gdb built >> for the TARGET to run on HOST. . . >>=20 >> This seems too confusing to me (and backwards). >>=20 >> Anyways, using your patch now and I found that it didn't work. >>=20 >> Thanks! >>=20 >> Andy >>=20 >>> Line 95: >>> CC_for_gdb=3D"${CT_HOST}-gcc ${CT_CFLAGS_FOR_HOST} ${CT_LDFLAGS_= FOR_HOST}" >>> LD_for_gdb=3D"${CT_HOST}-ld ${CT_LDFLAGS_FOR_HOST}" >>> if [ "${CT_GDB_CROSS_STATIC}" =3D "y" ]; then >>> CC_for_gdb+=3D" -static" >>> LD_for_gdb+=3D" -static" >>> fi >>>=20 >>> Line 195: >>> [ "${CT_TOOLCHAIN_ENABLE_NLS}" !=3D "y" ] && \ >>> native_extra_config+=3D("--disable-nls") >>>=20 >>> if [ "${CT_GDB_NATIVE_STATIC}" =3D "y" ]; then >>> CC_for_gdb=3D"${CT_TARGET}-gcc -static" >>> LD_for_gdb=3D"${CT_TARGET}-ld -static" >>> else >>> CC_for_gdb=3D"${CT_TARGET}-gcc" >>> LD_for_gdb=3D"${CT_TARGET}-ld" >>> fi >>>=20 >>> Thanks for the info, though! >>>=20 >>> Andy >>>=20 >>>>=20 >>>> Hope it works, >>>>=20 >>>> Best regards, >>>> Stefan >>>=20 >>>=20 >>> -- >>> For unsubscribe information see http://sourceware.org/lists.html#faq >>=20 >>=20 >> -- >> For unsubscribe information see http://sourceware.org/lists.html#faq >=20 >=20 > -- > For unsubscribe information see http://sourceware.org/lists.html#faq >=20 --Apple-Mail=_3D57CE24-C0D9-4671-832B-34F48461450A Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail Content-length: 496 -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJXmPlSAAoJEC4Hiufvn3/f3aoH+wWoIWZK0B8hH7vYHc8n8gOr RFM4XBZe/92a3S4DnMlXlRx+ahlPoBYqKvzosdwYZW73Ky5WCe583Jix+HV3TbJM q88F0i32oxLE1BHZpJQrKiFF03MOkXEc08fIA9Uw8AuMTEsrO4LzCIq4fZ6pdKLU CIKRhNzJrzibf+hTJ6YUtAL9wsdu+L71rGnbUA2vY+KgDyW5GrHVa0RvblmdpoU/ e6yL34c96EYLbd8D5a8wTpNxmwf/L0JIAq2OMep3lMk6f9oWCDIJqeaQ46QB4vZE jVTBBykWK8691eiJcOC10PltBoG8KnzV/cWwUTaqy3ghmq40o8HEIrou8ZqEJR8= =jqlv -----END PGP SIGNATURE----- --Apple-Mail=_3D57CE24-C0D9-4671-832B-34F48461450A--