delorie.com/archives/browse.cgi   search  
Mail Archives: djgpp/2002/09/17/15:34:43

From: Andris <pavenis AT lanet DOT lv>
Organization: Pavenis
To: djgpp AT delorie DOT com, "john watkins" <john_watkins AT blueyonder DOT co DOT uk>
Subject: Re: GSL installation problems
Date: Tue, 17 Sep 2002 19:37:02 +0300
User-Agent: KMail/1.4.7
References: <001301c25e75$35990300$689130d5 AT oemcomputer>
In-Reply-To: <001301c25e75$35990300$689130d5@oemcomputer>
MIME-Version: 1.0
Message-Id: <200209171937.02861.pavenis@lanet.lv>
X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id g8HJYXl08967
Reply-To: djgpp AT delorie DOT com

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 -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019