ti-utils: simplify static linking case by using pkg-config
Instead of hardcoding the dependencies of libnl, use pkg-config to discover them. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
155b219245
commit
1826371d1f
@ -6,14 +6,17 @@
|
||||
|
||||
TI_UTILS_VERSION = 06dbdb2727354b5f3ad7c723897f40051fddee49
|
||||
TI_UTILS_SITE = $(call github,gxk,ti-utils,$(TI_UTILS_VERSION))
|
||||
TI_UTILS_DEPENDENCIES = libnl
|
||||
TI_UTILS_DEPENDENCIES = libnl host-pkgconf
|
||||
TI_UTILS_LICENSE = BSD-3c
|
||||
TI_UTILS_LICENSE_FILES = COPYING
|
||||
|
||||
TI_UTILS_CFLAGS = $(shell $(PKG_CONFIG_HOST_BINARY) --cflags libnl-genl-3.0)
|
||||
TI_UTILS_LIBS = $(shell $(PKG_CONFIG_HOST_BINARY) --libs libnl-genl-3.0)
|
||||
|
||||
define TI_UTILS_BUILD_CMDS
|
||||
$(MAKE1) NFSROOT="$(STAGING_DIR)" \
|
||||
CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -I$(STAGING_DIR)/usr/include/libnl3" \
|
||||
LIBS="-lnl-3 -lnl-genl-3 -lpthread -lm" -C $(@D) all
|
||||
CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) $(TI_UTILS_CFLAGS)" \
|
||||
LIBS="$(TI_UTILS_LIBS)" -C $(@D) all
|
||||
endef
|
||||
|
||||
define TI_UTILS_INSTALL_TARGET_CMDS
|
||||
|
Loading…
Reference in New Issue
Block a user