GitXplorerGitXplorer
s

math-random-blumblumshub

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
ebdce44e4d49a7a57589a85342800f8f7737a1a1

typemap - simplify.

ssisyphus committed 7 months ago
Unverified
98ffa4cf599ac026d6fa380e33c838d1f17ae76b

Silence pointless warnings.

ssisyphus committed a year ago
Unverified
f070194bbebbf532fb3d2c5b61ef6322f005fadf

BlumBlumShub.pm - avoid unnecessary duplication in assigning to %Math::Random::BlumBlumShub::EXPORT_TAGS

ssisyphus committed 2 years ago
Unverified
d3547f82a25bcbc595181ba081ca1de7946e34c4

Makefile.PL - add strictures and warnings

ssisyphus committed 5 years ago
Unverified
177bb7a7333c5326ea037564cc83b5972e7f7ff1

BlumBlumShub.pm - call DynaLoader::bootstrap() directly

ssisyphus committed 5 years ago
Unverified
be8de8bc6564248e0331a6aa35732062245fef95

t/aab_basic.t - update for version 0.07

ssisyphus committed 8 years ago

README

The README file for this repository.

To build this module you need the GMP library installed on your computer. See: http://gmplib.org/

You will also need either Math::GMPz or Math::GMP

Build in the usual way:

perl Makefile.PL make make test make install

If the GMP library is not in a location where your compiler finds it by default, then instead of running 'perl Makefile.PL', you'll need to run:

perl Makefile.pl INC="-I/path/to/gmp_include" LIBS="-L/path/to/gmp_lib -lgmp"

Any problems, I am contactable by email at sisyphus at(@) cpan dot (.) org.

========== MS WINDOWS

If building with an MSVC++ compiler against a MinGW-built gmp lib, you'll need to additionally link to MinGW's libgcc.a and libcoldname.a. First, create copies of the 3 '.a' files (named libgmp.lib, libgcc.lib, and libcoldname.lib) and then run:

perl Makefile.pl INC="-IC:/path/to/gmp_include" LIBS="-LC:/path/to/gcc_lib -lgcc -LC:/path/to/coldname_lib -lcoldname -LC:/path/to/gmp_lib -lgmp"