From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: charles@aurox.ch (Charles A. Roelli) Newsgroups: gmane.emacs.devel Subject: Re: bignum branch Date: Thu, 09 Aug 2018 16:26:45 +0200 Message-ID: References: <87o9fbbw1t.fsf@tromey.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 1533824106 3276 195.159.176.226 (9 Aug 2018 14:15:06 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 9 Aug 2018 14:15:06 +0000 (UTC) Cc: emacs-devel@gnu.org To: Tom Tromey Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 09 16:15:02 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fnliP-0000kT-Rz for ged-emacs-devel@m.gmane.org; Thu, 09 Aug 2018 16:15:02 +0200 Original-Received: from localhost ([::1]:51072 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fnlkW-0000gX-Fs for ged-emacs-devel@m.gmane.org; Thu, 09 Aug 2018 10:17:12 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fnlji-0000gF-VZ for emacs-devel@gnu.org; Thu, 09 Aug 2018 10:16:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fnljf-0001kT-Kn for emacs-devel@gnu.org; Thu, 09 Aug 2018 10:16:22 -0400 Original-Received: from sinyavsky.aurox.ch ([37.35.109.145]:52304) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fnljf-0001gj-70 for emacs-devel@gnu.org; Thu, 09 Aug 2018 10:16:19 -0400 Original-Received: from sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) by sinyavsky.aurox.ch (Postfix) with ESMTP id 42DAE22807 for ; Thu, 9 Aug 2018 14:19:19 +0000 (UTC) Authentication-Results: sinyavsky.aurox.ch (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=aurox.ch DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aurox.ch; h= content-transfer-encoding:content-type:content-type:mime-version :references:subject:subject:in-reply-to:to:from:from:message-id :date:date; s=dkim; t=1533824358; x=1534688359; bh=97l9IXHg2NBUL FEcjNwm+DEtvPHP9eVPpypIAKQxAUc=; b=Og12jVUje76xgfIK8BM0nSHnczP7a WWRBgPbYL8ZYWwcjFB1JYyjbnNd0q/k1PDVMAKQ92AIEJuLTwlhE7GVhnVJPVBZh OS5B+ijpZlpXAzJykDR11NZhd06TMY0QXV+9UsVQLDaQnQ+McnRasyEQ76O1mYD+ jzy2RGO4T8W//I= X-Virus-Scanned: Debian amavisd-new at test.virtualizor.com Original-Received: from sinyavsky.aurox.ch ([127.0.0.1]) by sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id eYrTWsnUsHbP for ; Thu, 9 Aug 2018 14:19:18 +0000 (UTC) Original-Received: from gray (65.104.198.178.dynamic.wline.res.cust.swisscom.ch [178.198.104.65]) by sinyavsky.aurox.ch (Postfix) with ESMTPSA id CFB57227E9; Thu, 9 Aug 2018 14:19:17 +0000 (UTC) In-reply-to: <87o9fbbw1t.fsf@tromey.com> (message from Tom Tromey on Thu, 12 Jul 2018 22:26:38 -0600) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 37.35.109.145 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:228330 Archived-At: > From: Tom Tromey > Date: Thu, 12 Jul 2018 22:26:38 -0600 >=20 > I've pushed the bignum branch to emacs git, as feature/bignum. >=20 > Please read through it and try it out, and reply to this message with > your comments. >=20 > thanks, > Tom Thanks. It now works on macOS too (with GMP 6.1.1 installed), after replacing the old macros used in NS-related files. However, when building without GMP installed, I get this: CC alloc.o alloc.c: In function =E2=80=98make_number=E2=80=99: alloc.c:3833: error: =E2=80=98GMP_NUMB_BITS=E2=80=99 undeclared (first us= e in this function) alloc.c:3833: error: (Each undeclared identifier is reported only once alloc.c:3833: error: for each function it appears in.) Where should that symbol be defined?