X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=build-data%2Fplatforms%2Fvpp.mk;h=f71427c1ae650f0774575e6ede79260819052858;hb=568acbb7c980608e238b25b1330d2730b8534599;hp=45f74d3374a74d555471c3ccfe5d10d4505bbedd;hpb=20c02cb133cf7b8a0570b83acf927d5a0d601a36;p=vpp.git diff --git a/build-data/platforms/vpp.mk b/build-data/platforms/vpp.mk index 45f74d3374a..f71427c1ae6 100644 --- a/build-data/platforms/vpp.mk +++ b/build-data/platforms/vpp.mk @@ -12,53 +12,18 @@ # limitations under the License. # vector packet processor -vpp_arch = native -ifeq ($(shell uname -m),x86_64) -vpp_march = corei7 # Nehalem Instruction set -vpp_mtune = corei7-avx # Optimize for Sandy Bridge -vpp_dpdk_arch = corei7 -else -vpp_march = native -vpp_mtune = generic -vpp_dpdk_arch = native -endif -vpp_native_tools = vppapigen - -vpp_uses_dpdk = yes - -# Uncoment to enable building unit tests -# vpp_enable_tests = yes - -vpp_root_packages = vpp vlib vlib-api vnet svm vpp-api-test \ - vpp-api gmod -vpp_configure_args_vpp = --with-dpdk -vnet_configure_args_vpp = --with-dpdk +MACHINE=$(shell uname -m) -# Set these parameters carefully. The vlib_buffer_t is 128 bytes, i.e. -vlib_configure_args_vpp = --with-pre-data=128 - -# Enable plugins here, and no place else, via multiple --enable-XXX-plugin -# stanzas. -plugins_configure_args_vpp = --with-dpdk --enable-sixrd-plugin - -# DPDK configuration parameters -# vpp_uses_external_dpdk = yes -# vpp_dpdk_inc_dir = /usr/include/dpdk -# vpp_dpdk_lib_dir = /usr/lib -# vpp_dpdk_shared_lib = yes - -vpp_debug_TAG_CFLAGS = -g -O0 -DCLIB_DEBUG -DFORTIFY_SOURCE=2 -march=$(MARCH) \ - -fstack-protector-all -fPIC -Werror -vpp_debug_TAG_LDFLAGS = -g -O0 -DCLIB_DEBUG -DFORTIFY_SOURCE=2 -march=$(MARCH) \ - -fstack-protector-all -fPIC -Werror +vpp_arch = native +ifeq ($(TARGET_PLATFORM),thunderx) +vpp_dpdk_target = arm64-thunderx-linuxapp-gcc +endif -vpp_TAG_CFLAGS = -g -O2 -DFORTIFY_SOURCE=2 -march=$(MARCH) -mtune=$(MTUNE) \ - -fstack-protector -fPIC -Werror -vpp_TAG_LDFLAGS = -g -O2 -DFORTIFY_SOURCE=2 -march=$(MARCH) -mtune=$(MTUNE) \ - -fstack-protector -fPIC -Werror +vpp_root_packages = vpp vom -vpp_gcov_TAG_CFLAGS = -g -O0 -DCLIB_DEBUG -march=$(MARCH) \ - -fPIC -Werror -fprofile-arcs -ftest-coverage -vpp_gcov_TAG_LDFLAGS = -g -O0 -DCLIB_DEBUG -march=$(MARCH) \ - -fPIC -Werror -coverage +vpp_debug_TAG_BUILD_TYPE = debug +vpp_TAG_BUILD_TYPE = release +vpp_clang_TAG_BUILD_TYPE = release +vpp_gcov_TAG_BUILD_TYPE = gcov +vpp_coverity_TAG_BUILD_TYPE = coverity