diff options
author | Guillem Jover <guillem@hadrons.org> | 2010-01-30 22:40:01 +0100 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-01-30 22:40:01 +0100 |
commit | 1f0b0b23cd0a215c575a4becf686e5e005732848 (patch) | |
tree | 54fd9750baceba663479567707c4a1630217c27f | |
parent | 32d79b0310b6602e4846a5972bebde6b169945f3 (diff) | |
download | libbsd-1f0b0b23cd0a215c575a4becf686e5e005732848.tar.gz |
build: Use CCLD instead of hardcoded gcc for linking
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -101,6 +101,7 @@ LIB_STATIC_OBJS := $(LIB_SRCS:%.c=%.o) LIB_SHARED_OBJS := $(LIB_SRCS:%.c=%.lo) CC = gcc +CCLD = $(CC) # Set default value for compilation CFLAGS ?= -g -Wall -Wextra -Wno-unused-variable @@ -151,7 +152,8 @@ $(LIB_SONAME): $(LIB_SHARED) ln -fs $^ $@ $(LIB_SHARED): $(LIB_SHARED_OBJS) - gcc -shared \ + $(CCLD) \ + -shared \ -Wl,-soname -Wl,$(LIB_SONAME) \ -Wl,--version-script=Versions \ -o $@ $^ |