]> git.droids-corp.org - dpdk.git/commitdiff
examples: fix default build target
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 16 Jul 2014 13:35:56 +0000 (14:35 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 18 Jul 2014 23:47:51 +0000 (01:47 +0200)
L3fwd-acl and ip pipeline apps were using old
x86_64-default-linuxapp-gcc as their default target,
instead of x86_64-native-linuxapp-gcc

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
examples/ip_pipeline/Makefile
examples/l3fwd-acl/Makefile

index 2af271a9f58aa0ddca440f4a6450466265b10298..a807ee8de0737b0d694ee737da0cb4867dd3553a 100644 (file)
@@ -34,7 +34,7 @@ $(error "Please define RTE_SDK environment variable")
 endif
 
 # Default target, can be overridden by command line or environment
-RTE_TARGET ?= x86_64-default-linuxapp-gcc
+RTE_TARGET ?= x86_64-native-linuxapp-gcc
 
 include $(RTE_SDK)/mk/rte.vars.mk
 
index 7ba7247ccd6229a4fed882c95a43bfea5af8498b..a3473a83eb22f49a79992fe30ec7742ca91890a5 100644 (file)
@@ -34,7 +34,7 @@ $(error "Please define RTE_SDK environment variable")
 endif
 
 # Default target, can be overriden by command line or environment
-RTE_TARGET ?= x86_64-default-linuxapp-gcc
+RTE_TARGET ?= x86_64-native-linuxapp-gcc
 
 include $(RTE_SDK)/mk/rte.vars.mk