[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GSL - GNU Scientific Library for Mac
From: |
Kenneth Geisshirt |
Subject: |
Re: GSL - GNU Scientific Library for Mac |
Date: |
Thu, 16 Apr 2020 19:45:33 +0200 |
On Thu, Apr 16, 2020 at 6:38 PM <address@hidden> wrote:
> I am a student and am currently learning to program in C++(14). I have a
> MacBook Air so I use Xcode to write my code,
If you wish to continue to use Xcode, I suggest that you install home brew (
https://brew.sh/) which is an incredible source of free software.
Once home brew is installed, you can install GSL easily on your computer
using a terminal (I will recommend that you install iTerm -
https://www.iterm2.com/ - which is so much nicer than Apple Terminal): brew
install gsl.
Adding GSL to your Xcode requires a few additional settings in the project.
In "Build Settings", you have to add /usr/local/include to "Header Search
Path", /usr/local/lib to "Library Search Path" and -lgsl to "Other Linker
Flags".
Best regards,
Kenneth