Mail Archives: djgpp/2002/09/17/15:34:43
On Tuesday 17 September 2002 21:07, john watkins wrote:
> I should be grateful for help with installing GSL. The attatched file shows
> my results so far.
>
Here is some script that worked for me rather long time ago (edit version
number):
-------------------------------------------------------------
#! /bin/sh
pwd
src=`pwd | sed -e 's,^[a-zA-Z]:,,'`/gsl-1.1.1
echo $src
test -d build || mkdir build
( cd build; $src/configure --prefix=/dev/env/DJDIR )
( cd build; make )
---------------------------------------------------------------
Only suggestion. Try to install to temporary directory instead of directly to
$DJDIR.
for example append to script:
( cd build && make install prefix=$src/../inst )
After that You can copy needed parts to DJGPP directory tree
(or create binary archive)
If You don't want debugging information, try setting CFLAGS
before running configure accordingly (or read strip documentation to find
how to strip only debug info)
Andris
- Raw text -