All of lore.kernel.org
 help / color / mirror / Atom feed
* Unusual library path on OS X
@ 2018-12-31 20:57 Jeffrey Walton
  0 siblings, 0 replies; only message in thread
From: Jeffrey Walton @ 2018-12-31 20:57 UTC (permalink / raw)
  To: Git List

Hi Everyone,

I'm building Git 1.20.1 from sources on OS X. Git (and its dependents)
were configured with:

  PKGCONFPATH: /usr/local/lib/pkgconfig
       CPPFLAGS: -I/usr/local/include -DNDEBUG
         CFLAGS: -g2 -O2 -march=native -fPIC
       CXXFLAGS: -g2 -O2 -march=native -fPIC
        LDFLAGS: -L/usr/local/lib -Wl,-rpath,/usr/local/lib
         LDLIBS: -ldl -lpthread

For Git it results in a configure called with:

    PERL="$SH_PERL" \
    PKG_CONFIG_PATH="${BUILD_PKGCONFIG[*]}" \
    CPPFLAGS="${BUILD_CPPFLAGS[*]}" \
    CFLAGS="${BUILD_CFLAGS[*]}" \
    CXXFLAGS="${BUILD_CXXFLAGS[*]}" \
    LDFLAGS="${BUILD_LDFLAGS[*]}" \
    LIBS="-lssl -lcrypto -lz ${BUILD_LIBS[*]}" \
./configure --prefix="$BUILD_PREFIX" --with-lib="$BUILD_LIBDIR" \
    ...

BUILD_PREFIX is /usr/local, and BUILD_LIBDIR=/usr/local/lib.

Linking produces the following, which seems a bit unusual. It looks
like PREFIX and LIBDIR are being concatenated:

    LINK t/helper/test-fake-ssh
    LINK t/helper/test-line-buffer
    LINK t/helper/test-svn-fe
ld: warning: directory not found for option '-L/usr/local//usr/local/lib'
ld: warning: directory not found for option '-L/usr/local//usr/local/lib'
ld: warning: directory not found for option '-L/usr/local//usr/local/lib'
ld: warning: directory not found for option '-L/usr/local//usr/local/lib'

When I try to use --with-libdir=/usr/local/lib, I get:

    configure: WARNING: unrecognized options: --with-libdir

Jeff

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-12-31 20:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-31 20:57 Unusual library path on OS X Jeffrey Walton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.