From owner-svn-ports-all@freebsd.org Fri Aug 28 00:04:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4D8A9C45A8 for ; Fri, 28 Aug 2015 00:04:26 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97B331386 for ; Fri, 28 Aug 2015 00:04:26 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: (qmail 26056 invoked by uid 89); 28 Aug 2015 00:04:18 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 28 Aug 2015 00:04:18 -0000 Received: (qmail 25955 invoked by uid 89); 28 Aug 2015 00:04:01 -0000 Received: by simscan 1.3.1 ppid: 25939, pid: 25943, t: 0.1021s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 28 Aug 2015 00:04:01 -0000 Received: (qmail 30538 invoked by uid 89); 28 Aug 2015 00:04:01 -0000 Received: by simscan 1.4.0 ppid: 30497, pid: 30533, t: 0.4739s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 28 Aug 2015 00:04:00 -0000 From: Jan Beich To: Brad Davis Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r395444 - in head/lang/spidermonkey170: . files References: <201508272109.t7RL9m9x048190@repo.freebsd.org> Date: Fri, 28 Aug 2015 02:03:49 +0200 In-Reply-To: <201508272109.t7RL9m9x048190@repo.freebsd.org> (Brad Davis's message of "Thu, 27 Aug 2015 21:09:48 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2015 00:04:26 -0000 --=-=-= Content-Type: text/plain Brad Davis writes: > Author: brd > Date: Thu Aug 27 21:09:48 2015 > New Revision: 395444 > URL: https://svnweb.freebsd.org/changeset/ports/395444 > > Log: > Fix ARM build of lang/spidermoney170 by using GCC until clang is fixed. [...] > +# ARM needs GCC until https://llvm.org/bugs/show_bug.cgi?id=23244 is fixed > +.if ${ARCH} == "armv6" > +USE_GCC= yes > +.endif USE_GCC is unsafe if ${ARCH} in question ever switches to libc++. This can result in crashes due to mixing different C++ library implementations at runtime. Did you test it? If not try one of interactive modes in poudriere (-I/-i) and actually run js17 binary within armv6 jail. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJV36VmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3b1igH/iks5L4lYp3yIiBzMBM3OqdY Nj1op9WNdeotOb+ST6i+siH/YEcuJ7UXdI+PRMSHbDWEFDUnPS7qYF0+hrr/qIGt /UnJE5Fn4AuIgRIaDANJkw4IlXOKfkfZaPT5FRMENQnWBMlpjZ/A6c1brKzwSDsv uO0ISZiqwghLMqciwzZ6zySl2FPJSmlFgJAOEjpvB1Iod+tEU9RmU2AhihB13vMM k6+rKO5WInRBqnJgn3uFqcYm6tir/fv2SGnyvwnQ5oB159vCwJPLUj4Fxwi1v7OW jXRVzbGehoX4OVTfez2O4cWn43UsxxRkWDj6Xu8NaSoyjaCf3jfCJmaUYnTUfp0= =f3wB -----END PGP SIGNATURE----- --=-=-=--