[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GSL and GNUStep
From: |
David Chisnall |
Subject: |
Re: GSL and GNUStep |
Date: |
Sat, 15 Nov 2008 12:01:42 +0000 |
On 15 Nov 2008, at 03:51, Tommy Nordgren wrote:
By default the gsl headers and libraries are stored in /usr/local/
include and /usr/local/lib
The location of header and library files is highly OS / distribution-
specific. It's /usr/local/include/gsl and /usr/local/lib on FreeBSD.
It is almost always better to use pkg_config than to hard-code the
include and library paths. Something along the lines of this will
generally be better:
${TOOL_NAME}_LDFLAGS += `pkg-config gls --libs`
${TOOL_NAME}_CPPFLAGS += `pkg-config gls --cflags`
David