Binary installer for GSL-1.13 on MinGW: Difference between revisions
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
Here are some convenient installers for [http://www.gnu.org/software/gsl/ GSL] (the GNU Scientific Library) versions 1.11 and 1.13 on MinGW: | Here are some convenient installers for [http://www.gnu.org/software/gsl/ GSL] (the GNU Scientific Library) versions 1.11 and 1.13 on MinGW: | ||
Latest revision as of 10:37, 31 January 2011
Here are some convenient installers for GSL (the GNU Scientific Library) versions 1.11 and 1.13 on MinGW:
- gsl-1.13-1.exe (binary installer, 2.7M)
- gsl-1.11.exe (binary installer)
Update: the new 1.13-1 installer now includes static and well as shared libraries, for ease of producing self-contained binaries. It also provides the option of adding the installed location to the Windows PATH for greater convenience.
The installer includes all the code examples from the GSL distribution but currently does not include documentation files (user's manual).
Included is a build script included (examples/SConstruct) which gives you a cross-platform method for compiling GSL programs on Windows, Linux and Mac) using the SCons build tool.
The copy of GSL included in this installer was built using GCC 3.4.5 on MinGW with the following commands:
./configure --enable-static=yes --enable-shared=yes --prefix=/c/PROGRA~1/gsl-1.13 make mkdir ~/temp_gsl DESTDIR=~/temp_gsl make install cd ~/gsl_mingw_scripts scons
Scripts used (specifically, 'gsl_mingw_scripts') to package this installer will happily be provided on request. They are written using SCons and NSIS.
The installer writes registry keys to allow you to find where the libraries etc have been installed.. so you can pick up those file locations in your own software's build scripts, or hard-code them, up to you.
Future work
- It would be good to convert the gsl-config script to Python, and then change it so that it detects the installed file locations using the Windows Registry.
- Also be good to add the GSL install location to the Windows %PATH%... currently the installer doesn't do this.
- Should try to also include the static libraries... some users would like that.
- Fix up support for installation on 64-bit machines. Currently some of the paths use 'PROGRA~1' which is not correct for that platform.