summaryrefslogtreecommitdiff
path: root/examples/helloworld
diff options
context:
space:
mode:
authorBruce Richardson <[email protected]>2019-03-06 16:22:42 +0000
committerThomas Monjalon <[email protected]>2019-03-12 23:05:06 +0100
commit218c4e68c1d9bd4a9281bc1dc4d0ab89859083bf (patch)
tree00b4b284261f43298e1ecf4249980bda614f4b20 /examples/helloworld
parentae2f2fee247ad0f80f5a122fd174fa16cddd5438 (diff)
mk: use linux and freebsd in config names
Rather than using linuxapp and bsdapp everywhere, we can change things to use the, more readable, terms "linux" and "freebsd" in our build configs. Rather than renaming the configs we can just duplicate the existing ones with the new names using symlinks, and use the new names exclusively internally. ["make showconfigs" also only shows the new names to keep the list short] The result is that backward compatibility is kept fully but any new builds or development can be done using the newer names, i.e. both "make config T=x86_64-native-linuxapp-gcc" and "T=x86_64-native-linux-gcc" work. Signed-off-by: Bruce Richardson <[email protected]>
Diffstat (limited to 'examples/helloworld')
-rw-r--r--examples/helloworld/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloworld/Makefile b/examples/helloworld/Makefile
index d66b526b6f..0b5374d037 100644
--- a/examples/helloworld/Makefile
+++ b/examples/helloworld/Makefile
@@ -44,7 +44,7 @@ $(error "Please define RTE_SDK environment variable")
endif
# Default target, can be overridden by command line or environment
-RTE_TARGET ?= x86_64-native-linuxapp-gcc
+RTE_TARGET ?= x86_64-native-linux-gcc
include $(RTE_SDK)/mk/rte.vars.mk