From: Andris Organization: Pavenis To: djgpp AT delorie DOT com, "john watkins" 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 Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Message-Id: <200209171937.02861.pavenis@lanet.lv> Content-Transfer-Encoding: 8bit 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