]> git.droids-corp.org - dpdk.git/commitdiff
examples: ignore linux apps on bsd
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 2 Jul 2014 22:07:15 +0000 (00:07 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 2 Jul 2014 22:10:30 +0000 (00:10 +0200)
Do not try to build Linux examples in a BSD environment.

Reported-by: Bruce Richardson <bruce.richardson@intel.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
examples/Makefile
examples/exception_path/Makefile
examples/netmap_compat/bridge/Makefile
examples/qos_sched/Makefile
examples/vhost/Makefile

index 4353b840a2f9cc93477f60708cfaa44c07f07edb..d0624f6b7d0476639ee07b3bb414cf67c158d438 100644 (file)
@@ -51,7 +51,7 @@ DIRS-y += l2fwd
 DIRS-$(CONFIG_RTE_LIBRTE_IVSHMEM) += l2fwd-ivshmem
 DIRS-y += l3fwd
 DIRS-$(CONFIG_RTE_LIBRTE_ACL) += l3fwd-acl
-DIRS-y += l3fwd-power
+DIRS-$(CONFIG_RTE_LIBRTE_POWER) += l3fwd-power
 DIRS-y += l3fwd-vf
 DIRS-y += link_status_interrupt
 DIRS-y += load_balancer
index 76f71d9e4423a6874bbc8d2a532318b613ea5959..959914a2a57353ee7160ba188e40275de5f89ba2 100644 (file)
@@ -39,9 +39,10 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc
 include $(RTE_SDK)/mk/rte.vars.mk
 
 ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp")
-$(error This application can only operate in a linuxapp environment, \
+$(info This application can only operate in a linuxapp environment, \
 please change the definition of the RTE_TARGET environment variable)
-endif
+all:
+else
 
 # binary name
 APP = exception_path
@@ -53,3 +54,5 @@ CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
 include $(RTE_SDK)/mk/rte.extapp.mk
+
+endif
index 13eb229c94030e6a74979e6eef7f38fb9fae325a..50d96e81998dbb21592e9ab573439edd55f06811 100644 (file)
@@ -38,6 +38,12 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc
 
 include $(RTE_SDK)/mk/rte.vars.mk
 
+ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp")
+$(info This application can only operate in a linuxapp environment, \
+please change the definition of the RTE_TARGET environment variable)
+all:
+else
+
 # binary name
 APP = bridge
 
@@ -52,3 +58,5 @@ CFLAGS += -O3 -I$(SRCDIR)/../lib -I$(SRCDIR)/../netmap
 CFLAGS += $(WERROR_FLAGS)
 
 include $(RTE_SDK)/mk/rte.extapp.mk
+
+endif
index 48713f9c805eb7242f19e296b6b337dd6d61c0a5..f59645f527993bea2cfd257a1c2801c5d39a2d1d 100755 (executable)
@@ -39,9 +39,10 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc
 include $(RTE_SDK)/mk/rte.vars.mk
 
 ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp")
-$(error This application can only operate in a linuxapp environment, \
+$(info This application can only operate in a linuxapp environment, \
 please change the definition of the RTE_TARGET environment variable)
-endif
+all:
+else
 
 # binary name
 APP = qos_sched
@@ -55,3 +56,5 @@ CFLAGS_args.o := -D_GNU_SOURCE
 CFLAGS_cfg_file.o := -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
+
+endif
index 47e054dd4666f0e3fee75a289d6cbf9bdfcc3c5f..f45f83f78b6e205fd6dc90dff62dc338d5563162 100644 (file)
@@ -38,6 +38,12 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc
 
 include $(RTE_SDK)/mk/rte.vars.mk
 
+ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp")
+$(info This application can only operate in a linuxapp environment, \
+please change the definition of the RTE_TARGET environment variable)
+all:
+else
+
 # binary name
 APP = vhost-switch
 
@@ -50,3 +56,5 @@ CFLAGS += $(WERROR_FLAGS)
 LDFLAGS += -lfuse
 
 include $(RTE_SDK)/mk/rte.extapp.mk
+
+endif