Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Keith Thompson <kst-u@mib.org> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: profesional bignum arithmetic in c, how done? |
| Date | 2015-09-03 12:01 -0700 |
| Organization | None to speak of |
| Message-ID | <lnwpw7qqdn.fsf@kst-u.example.com> (permalink) |
| References | (3 earlier) <ms84j6$ves$1@dont-email.me> <d4qmniF2hbnU1@mid.uni-berlin.de> <ms9fbk$vlj$1@dont-email.me> <d4rah0F7l3jU1@mid.uni-berlin.de> <msa0l6$alg$1@dont-email.me> |
Bartc <bc@freeuk.com> writes:
[...]
> .dll files ought to be language-neutral. The gmp.h file might be
> specific to mingw. Also the .dll file is being used as a library file
> for gcc which I haven't come across before, and might not work elsewhere.
>
> Minor details that I can get around if needed. I can't however get that
> bloody 'configure' file to run so that I can even GET the sources.
>
> And that, apparently, is MY fault!
I'm not saying it's your fault -- but it's certainly not mine, or, as
far as I can tell, anyone else's here in comp.lang.c.
[...]
> Sorry, but 30,000 lines of script code IS hairy and completely over the
> top. And in a language that doesn't work on anything but Unix too. I
> half-suspect this has been done deliberately to have a go at non-Unix
> programmers just so you can get to call them lazy and stupid.
The size of the configure script is irrelevant. It's automatically
generated and not intended to be modified, or even read, by humans
(though I've sometimes resorted to tweaking a configure script myself).
On the kind of system it's intended for, It Just Works, and the size is
irrelevant.
On other systems, It Just Doesn't Work, and any reasonable solution to
that problem will not depend on making the configure script more easily
maintainable by users.
GMP is a GNU/FSF project. The FSF *does not care* about supporting
Windows (though they don't stand in the way of third parties helping to
support GNU software on Windows). That's an inevitable consequence of
the organization's philosophy. I express no opinion on their policy.
And it has nothing to do with C, so I suggest that this is not the place
to discuss it further.
> But a question for you: If you were installing this and it failed with
> this error:
>
> " configure: error: cannot compute suffix of executables: cannot compile
> and link"
>
> what would you do?
>
> (I decided to try this under Ubuntu to see if it's as easy as everyone
> makes out.
>
> I searched online for the library name and typed 'sudo apt-get install
> libgmp3-dev' I think it was. And that worked, in that now I could
> compile '#include <gmp.h>' when I couldn't before.
>
> However, it seemed *too* easy and finished too quickly; what happened to
> all that configure stuff?
>
> So I went to gmplib.org and clicked gmp-6.0.0a.tar.lz again. Surprise,
> Ubuntu hadn't a clue what that file was either! So I download and
> extract the .tar.bz2 version.
Whatever file manager you're using apparently doesn't recognize the
".tar.lz" suffix. If you had typed
tar xf gmp-6.0.0a.tar.lz
at a command line, it would have unpacked it into a gmp-6.0.0a
directory.
> Now I type ./configure. And I get lots of messages, and it gets much
> further than it did with Windows. But surprise number two, it fails with:
>
> "configure: error: No usable m4 in $PATH or /user/5bin"
Apparently you need the m4 command to build gmp from source.
apt-get install m4
will install it for you.
> So we have a ridiculously complicated configure script that doesn't work
> in Windows, nor on Linux! (No doubt my fault again, but at least it
> can't be Windows being hostile this time!)
>
> Meanwhile people using Linux can bypass all that with what looks
> suspiciously like a streamlined download of a pre-configured gmp system!
> A bit of cheat if that is the case.)
It's not a cheat at all. There are binary packages for various
Linux-based distributions. The maintainers of those distributions (Red
Hat, Ubuntu, etc.) create those packages from source and make them
available via each distribution's package management system. When you
type
sudo apt-get install libgmp3-dev
you're taking advantage of the work someone did to build a Debian
package from the libgmp sources.
It seems to me that it would be a large but not intractable job to set
up something similar for Windows, creating Windows-specific binary
installation packages for the same software packages that are commonly
available on Linux systems, along with something that runs on your
Windows box and keeps track of what you've installed and knows where to
find new packages and update existing ones. I certainly don't have the
time or ability to create something like that (I haven't even used
Windows in quite a while). Cygwin is almost like that, but it requires
a Unix-like layer on top of Windows. MSYS might be closer; I'm not as
familiar with it.
--
Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst>
Working, but not speaking, for JetHead Development, Inc.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-01 01:22 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 02:29 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 11:10 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-01 12:40 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 12:06 +0100
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-01 13:28 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 13:07 +0100
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-01 14:15 +0200
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-01 09:12 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-01 12:53 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-01 14:02 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 13:43 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-01 16:39 +0200
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-02 10:17 +1200
Re: profesional bignum arithmetic in c, how done? <william@wilbur.25thandClement.com> - 2015-09-01 10:36 -0700
Re: profesional bignum arithmetic in c, how done? "Chris M. Thomasson" <nospam@nospam.nospam> - 2015-09-01 12:46 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 12:49 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 05:15 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 05:18 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 13:32 +0100
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 13:45 +0100
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 13:57 +0100
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 16:35 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 06:00 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 14:50 +0100
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-01 16:40 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 18:24 +0100
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 18:28 +0100
Re: profesional bignum arithmetic in c, how done? Noob <root@127.0.0.1> - 2015-09-02 15:22 +0200
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 09:05 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-02 17:55 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 10:20 +0200
Re: profesional bignum arithmetic in c, how done? James Kuyper <jameskuyper@verizon.net> - 2015-09-03 08:37 -0400
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 15:22 +0100
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-03 07:52 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 10:29 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 19:45 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 12:23 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-01 11:25 -0700
Re: profesional bignum arithmetic in c, how done? <william@wilbur.25thandClement.com> - 2015-09-01 11:34 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 20:26 +0100
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-01 19:02 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 20:51 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 13:04 -0700
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-01 23:11 +0200
Re: profesional bignum arithmetic in c, how done? jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-01 21:13 +0200
Re: profesional bignum arithmetic in c, how done? jadill33@gmail.com - 2015-09-01 13:34 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 13:46 -0700
Re: profesional bignum arithmetic in c, how done? jadill33@gmail.com - 2015-09-01 14:43 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 15:13 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-02 10:24 +1200
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 15:56 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-02 11:03 +1200
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-01 16:19 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-01 17:01 -0700
Re: profesional bignum arithmetic in c, how done? jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-02 09:40 +0200
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 00:43 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 08:58 +0100
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 08:49 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-02 11:37 +0100
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 11:48 +0100
Re: profesional bignum arithmetic in c, how done? jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-02 15:59 +0200
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-02 16:09 +0200
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-02 16:00 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-02 08:12 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 17:21 +0100
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-02 12:54 +0200
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-06 15:25 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-06 17:14 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 17:16 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 12:12 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 04:42 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 14:55 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 07:35 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 18:19 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-06 18:25 -0700
Re: profesional bignum arithmetic in c, how done? jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-07 14:25 +0200
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 05:35 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-07 13:49 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 15:00 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 07:24 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 07:39 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 16:28 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 08:34 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 16:58 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 09:16 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 17:18 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-07 18:05 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-07 21:31 +0200
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 13:19 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-08 08:56 +0200
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-07 18:25 +0200
Re: profesional bignum arithmetic in c, how done? bartekltg <bartekltg@gmail.com> - 2015-09-07 18:16 +0200
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 17:30 +0100
Re: profesional bignum arithmetic in c, how done? James Kuyper <jameskuyper@verizon.net> - 2015-09-07 12:44 -0400
Re: profesional bignum arithmetic in c, how done? James Kuyper <jameskuyper@verizon.net> - 2015-09-07 12:17 -0400
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-07 10:31 +0200
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 10:26 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 12:05 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 04:17 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 12:51 +0100
Re: profesional bignum arithmetic in c, how done? James Kuyper <jameskuyper@verizon.net> - 2015-09-07 12:42 -0400
Re: profesional bignum arithmetic in c, how done? jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-07 21:07 +0200
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 02:14 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 02:21 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 03:03 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 11:43 +0100
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 08:36 -0700
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-02 15:58 -0500
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 14:16 -0700
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-02 17:11 -0500
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-02 23:55 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-03 01:22 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-03 06:01 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 10:29 +0200
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-03 08:15 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 10:41 +0200
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-03 09:53 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 11:46 +0200
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 12:59 -0700
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-03 10:24 -0500
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 13:22 -0700
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 12:48 -0700
Re: profesional bignum arithmetic in c, how done? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 13:27 -0700
Re: profesional bignum arithmetic in c, how done? Rosario19 <Ros@invalid.invalid> - 2015-09-09 18:37 +0200
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-02 01:04 -0700
Re: profesional bignum arithmetic in c, how done? jadill33@gmail.com - 2015-09-02 06:39 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-02 09:27 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 23:22 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-01 23:13 +0200
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-01 16:46 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-01 14:19 +0100
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-01 17:20 +0000
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 06:51 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 09:28 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 01:36 +0100
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-03 10:46 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 13:46 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 05:53 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 15:13 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 06:23 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-04 13:15 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 12:38 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 05:14 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 05:30 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-04 14:46 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 15:04 +0100
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-05 15:32 +0200
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-05 15:02 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 07:20 -0700
Re: profesional bignum arithmetic in c, how done? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-05 16:57 +0000
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-06 10:50 +0200
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 15:58 +0100
Re: profesional bignum arithmetic in c, how done? James Kuyper <jameskuyper@verizon.net> - 2015-09-05 11:24 -0400
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 07:07 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 07:16 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-05 15:38 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 06:48 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-05 07:48 +1200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 12:51 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-05 11:01 +1200
Re: profesional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-05 02:34 +0200
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-05 12:49 +1200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 18:55 -0700
Re: profesional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-05 03:56 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 19:26 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 20:58 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 21:55 -0700
Re: profesional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-05 07:19 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 22:30 -0700
Re: profesional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-05 07:35 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 22:48 -0700
Re: profesional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-05 07:52 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 11:45 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 17:58 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 20:52 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-07 16:10 +1200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 04:09 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 15:03 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-05 11:02 +1200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 05:27 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-04 15:45 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 07:03 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 16:03 +0100
Re: profesional bignum arithmetic in c, how done? jadill33@gmail.com - 2015-09-04 08:35 -0700
Re: profesional bignum arithmetic in c, how done? gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-04 15:55 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 17:25 +0100
Re: profesional bignum arithmetic in c, how done? gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-04 16:53 +0000
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-04 11:59 -0500
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 18:12 +0100
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-04 12:35 -0500
Re: professional bignum arithmetic in c, how done? gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-04 17:59 +0000
Re: professional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 11:31 -0700
Re: professional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 20:27 +0100
Re: professional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 12:39 -0700
Re: professional bignum arithmetic in c, how done? Melzzzzz <mel@zzzzz.com> - 2015-09-04 22:13 +0200
Re: professional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 13:30 -0700
Re: professional bignum arithmetic in c, how done? Steve Thompson <stevet810@gmail.com> - 2015-09-04 20:33 +0000
Re: professional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-04 14:26 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 20:14 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 17:11 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 14:24 +0100
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-04 19:20 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 02:26 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 11:02 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 03:28 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-05 23:17 +1200
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-05 15:01 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 04:29 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 04:47 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 05:14 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 13:17 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 05:37 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 05:32 -0700
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-05 09:46 -0500
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-05 16:11 +0100
Re: profesional bignum arithmetic in c, how done? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-07 00:07 -0500
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-05 11:39 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 04:24 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-05 12:32 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 13:30 +0100
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-05 13:43 +0100
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 05:47 -0700
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-05 05:48 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 05:56 -0700
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-05 07:38 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 10:16 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 12:09 -0700
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 06:00 -0700
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-05 06:15 -0700
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-05 07:12 -0700
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-05 15:05 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 17:32 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-05 15:44 +0100
Re: profesional bignum arithmetic in c, how done? wssimms@gmail.com - 2015-09-05 08:17 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-05 15:29 -0700
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-05 15:40 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-05 14:59 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-03 15:48 +0100
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-03 16:24 +0000
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 09:46 -0700
Re: profesional bignum arithmetic in c, how done? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-03 18:02 +0100
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-03 11:47 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 11:54 -0700
Re: profesional bignum arithmetic in c, how done? David Brown <david.brown@hesbynett.no> - 2015-09-03 22:40 +0200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 13:50 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 13:54 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 20:04 +0100
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 18:41 +0100
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-03 12:01 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 20:21 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 12:28 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 12:55 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 20:55 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 13:05 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 21:33 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 13:41 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-03 22:22 +0100
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 14:34 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-03 23:52 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 17:30 -0700
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-04 12:41 +1200
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 06:19 -0700
Re: profesional bignum arithmetic in c, how done? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-04 16:38 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 08:51 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 09:50 -0700
Re: profesional bignum arithmetic in c, how done? jadill33@gmail.com - 2015-09-03 13:50 -0700
Re: profesional bignum arithmetic in c, how done? Keith Thompson <kst-u@mib.org> - 2015-09-03 16:29 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 01:44 +0100
Re: profesional bignum arithmetic in c, how done? Ian Collins <ian-news@hotmail.com> - 2015-09-04 08:50 +1200
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 07:14 -0700
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-03 15:48 +0100
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 09:16 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-03 09:19 -0700
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-03 22:58 +0000
Re: profesional bignum arithmetic in c, how done? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 17:13 -0700
Re: profesional bignum arithmetic in c, how done? jt@toerring.de (Jens Thoms Toerring) - 2015-09-04 01:58 +0000
Re: profesional bignum arithmetic in c, how done? Bartc <bc@freeuk.com> - 2015-09-04 11:22 +0100
Re: profesional bignum arithmetic in c, how done? gordonb.cr5il@burditt.org (Gordon Burditt) - 2015-09-04 21:26 -0500
Re: profesional bignum arithmetic in c, how done? fir <profesor.fir@gmail.com> - 2015-09-01 12:59 -0700
Re: profesional bignum arithmetic in c, how done? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 05:20 -0700
csiph-web