Skip to content

ILW8/gwnum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to the gwnum library.

-> how to use
	Before calling gwinit and one of the gwsetup routines, the
	global variables defined in cpuid.h must be initialized.  You can
	do this yourself or let gwinit do it for you (it will call the
	guessCpuType and guessCpuSpeed routines).

	Next, study gwnum.h and tutorial.txt for a list of functions and how
	to best use them.

-> how to compile / how to port

Windows:
	To make the libraries, your path must already be set to the proper
	C compiler (32-bit or 64-bit).  Then execute
		nmake /f compile
	to build the 32-bit libraries and 
		nmake /f compil64
	to build the 64-bit libraries and
		make -f makemw64
	to build the MinGW-w64 64-bit libraries.

Linux 32-bit:
	The assembly code object files have already been converted to ELF format using
	Agner Fog's objconv on a Windows machine.

	"make -f makefile is used to compile the necessary C and C++ source files on the
	Linux machine and to finish building the gwnum.a library.

	A C application using gwnum must link with:
		gwnum.a gwnum.ld -lpthread -lstdc++

Linux 64-bit:
	The assembly code object files have already been converted to ELF format using
	Agner Fog's objconv on a Windows machine.

	"make -f make64" is used to compile the necessary C and C++ source files on the
	Linux machine and to finish building the gwnum.a library.

	A C application using gwnum must link with:
		gwnum.a gwnum.ld -lpthread -lstdc++

FreeBSD 32-bit:
	The assembly code object files have already been converted to ELF format using
	Agner Fog's objconv on a Windows machine.

	"make -f makebsd" is used to compile the necessary C and C++ source files
	and to finish building the gwnum.a library

	A C application must link with:
		-lcompat gwnum.a gwnum.ld -lpthread -lstdc++

FreeBSD 64-bit:
	The assembly code object files have already been converted to ELF format using
	Agner Fog's objconv on a Windows machine.

	"make -f makebsd64" is used to compile the necessary C and C++ source files
	and to finish building the gwnum.a library

	A C application must link with:
		-lcompat gwnum.a gwnum.ld -lpthread -lstdc++

Mac OS X (Intel CPUs only):
	The Mac OS X build procedure is different than linux (because universal
	binaries require both the 32-bit and 64-bit libraries).  The assembly code object
	files have already been converted to Mach-O format using Agner Fog's
	objconv on a Windows machine.  To finish building the libraries, run
	"make -f makemac".  The resulting libraries will be in release/gwnum.a,
	debug/gwnum.a, amd64/release/gwnum.a, amd64/debug/gwnum.a.

	A C application must link with gwnum.a -lpthread -lstdc++
	You may also need to add multutil.o to the linker command line.
	For reasons unknown, the linker has trouble pulling it out of gwnum.a

Haiku (probably no longer works):
	The assembly code object files have already been converted to ELF format using
	Agner Fog's objconv on a Windows machine.

	"make -f makehaiku" is used to compile the necessary C and C++ source files on the
	Haiku machine to finish building the gwnum.a library.

	A C application using gwnum must link with:
		gwnum.a gwnum.ld and either -lstdc++.r4 (for GCC2) or -lstdc++ (for GCC4)

-> Legal stuff

Copyright (c) 1996-2021, Mersenne Research, Inc.  All rights reserved. 

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are 
met: 

(1) Redistributing source code must contain this copyright notice,
limitations, and disclaimer. 
(2) If this software is used to find Mersenne Prime numbers, then
GIMPS will be considered the discoverer of any prime numbers found
and the prize rules at http://mersenne.org/prize.htm will apply.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published