blob: 94e695112f55fdbaa59c09118232c0e2b77e6146 [file] [log] [blame]
Damjan Marione936bbe2016-02-25 23:17:38 +01001# Copyright (c) 2016 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14# vector packet processor
15vpp_lite_arch = native
Damjan Marion154d4452016-06-28 19:10:41 +020016ifeq ($(shell uname -m),x86_64)
Damjan Marion1c80e832016-05-11 23:07:18 +020017vpp_lite_march = corei7 # Nehalem Instruction set
18vpp_lite_mtune = corei7-avx # Optimize for Sandy Bridge
Damjan Marion154d4452016-06-28 19:10:41 +020019else
20vpp_lite_march = native
21vpp_lite_mtune = generic
22endif
Damjan Marione936bbe2016-02-25 23:17:38 +010023vpp_lite_native_tools = vppapigen
24
25vpp_lite_uses_dpdk = no
26
Ole Troand575e692016-08-25 12:26:47 +020027# Uncoment to enable building unit tests
28#vpp_lite_enable_tests = yes
29
Damjan Marione936bbe2016-02-25 23:17:38 +010030vpp_lite_root_packages = vpp vlib vlib-api vnet svm vpp-api-test \
Ole Troan6855f6c2016-04-09 03:16:30 +020031 vpp-api gmod
Damjan Marione936bbe2016-02-25 23:17:38 +010032
33vlib_configure_args_vpp_lite = --with-pre-data=128
34
Ole Troanea3e1fc2016-06-24 20:10:30 +020035vnet_configure_args_vpp_lite =
36vpp_configure_args_vpp_lite =
Damjan Marione936bbe2016-02-25 23:17:38 +010037
38vpp_lite_debug_TAG_CFLAGS = -g -O0 -DCLIB_DEBUG -DFORTIFY_SOURCE=2 -march=$(MARCH) \
39 -fstack-protector-all -fPIC -Werror
40vpp_lite_debug_TAG_LDFLAGS = -g -O0 -DCLIB_DEBUG -DFORTIFY_SOURCE=2 -march=$(MARCH) \
41 -fstack-protector-all -fPIC -Werror
42
Damjan Marion1c80e832016-05-11 23:07:18 +020043vpp_lite_TAG_CFLAGS = -g -O2 -DFORTIFY_SOURCE=2 -march=$(MARCH) -mtune=$(MTUNE) \
Damjan Marione936bbe2016-02-25 23:17:38 +010044 -fstack-protector -fPIC -Werror
Damjan Marion1c80e832016-05-11 23:07:18 +020045vpp_lite_TAG_LDFLAGS = -g -O2 -DFORTIFY_SOURCE=2 -march=$(MARCH) -mtune=$(MTUNE) \
Damjan Marione936bbe2016-02-25 23:17:38 +010046 -fstack-protector -fPIC -Werror