]> git.droids-corp.org - dpdk.git/commitdiff
mk: fix missing librt dependencies
authorDaniel Mrzyglod <danielx.t.mrzyglod@intel.com>
Tue, 22 Mar 2016 12:51:02 +0000 (13:51 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 22 Mar 2016 19:46:53 +0000 (20:46 +0100)
For GLIBC < 2.17 it is necessery to add -lrt for linker
from glibc > 2.17 The `clock_*' suite of functions (declared in <time.h>) is now
available directly in the main C library. This affect Ubuntu 12.04 in i686
and other older Linux Distros).

Fixes: 4758404a3084 ("mk: fix eal shared library dependencies")
Signed-off-by: Daniel Mrzyglod <danielx.t.mrzyglod@intel.com>
app/test/Makefile
examples/ptpclient/Makefile
lib/librte_eal/linuxapp/eal/Makefile

index 00e4df2d2969c0f7769cf2c2d48468b283329aae..a4907d59868de3a0c93a7129b5ea7946d630a852 100644 (file)
@@ -114,6 +114,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_string.c
 SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_lib.c
 
 ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
+LDLIBS += -lrt
 SRCS-y += test_red.c
 SRCS-y += test_sched.c
 endif
index b77cf7100ea540f8d0676fa984df3ad57e207e4f..d241730fbd3b1d76cace49d28ea371249e3c8f86 100644 (file)
@@ -46,6 +46,7 @@ SRCS-y := ptpclient.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+LDLIBS += -lrt
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 53d5b691e1554ee76a56eab4e9dd2bdbe0255a31..e1093619b80ace75d3b9348da48c8da2de24213a 100644 (file)
@@ -52,6 +52,7 @@ CFLAGS += $(WERROR_FLAGS) -O3
 LDLIBS += -ldl
 LDLIBS += -lpthread
 LDLIBS += -lgcc_s
+LDLIBS += -lrt
 
 # specific to linuxapp exec-env
 SRCS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) := eal.c