Hi Peter,
Thanks very much for replying.
I think there must be some assumption about where things like autoconf live as
I had this problem when I installed the build tools via nix but not via
homebrew (nix-env -i autoconf vs brew install autoconf).
In the end I managed to get nix to build gsl with this in my shell.nix
> { nixpkgs ? import <nixpkgs> { overlays = [(self: super: {gsl =
> super.gsl.overrideAttrs (o: {CFLAGS = "-DDEBUG -O3";});})]; }
> , compiler ? "ghc822"
> , doBenchmark ? false }:
A bit simpler than the instructions in HACKING I think 😀 - I am leaving it here
in case anyone else is searching for how to build gsl via nix.
Maybe I should create a PR to add this to the HACKING instructions?
Dominic Steinitz
[email protected]
http://idontgetoutmuch.wordpress.com
Twitter: @idontgetoutmuch
> On 24 Feb 2018, at 04:49, Peter Johansson <[email protected]> wrote:
>
> Hello,
>
>
> On 2/24/2018 5:29 AM, Dominic Steinitz wrote:
>
>> Searching the web suggests trying autoreconf -i -v but this gives lots of
>> errors about libtool.
>
> I suggest you read file 'HACKING' and follow the instructions there. It used
> to work for me, but it was a couple of years ago.
>
> hth,
> Peter