first public release
[dpdk.git] / mk / target / generic / rte.vars.mk
1 #   BSD LICENSE
2
3 #   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5
6 #   Redistribution and use in source and binary forms, with or without 
7 #   modification, are permitted provided that the following conditions 
8 #   are met:
9
10 #     * Redistributions of source code must retain the above copyright 
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright 
13 #       notice, this list of conditions and the following disclaimer in 
14 #       the documentation and/or other materials provided with the 
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its 
17 #       contributors may be used to endorse or promote products derived 
18 #       from this software without specific prior written permission.
19
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 #  version: DPDK.L.1.2.3-3
33
34 #
35 # This .mk is the generic target rte.var.mk ; it includes .mk for
36 # the specified machine, architecture, toolchain (compiler) and
37 # executive environment.
38 #
39
40 #
41 # machine:
42 #
43 #   - can define ARCH variable (overriden by cmdline value)
44 #   - can define CROSS variable (overriden by cmdline value)
45 #   - define MACHINE_CFLAGS variable (overriden by cmdline value)
46 #   - define MACHINE_LDFLAGS variable (overriden by cmdline value)
47 #   - define MACHINE_ASFLAGS variable (overriden by cmdline value)
48 #   - can define CPU_CFLAGS variable (overriden by cmdline value) that
49 #     overrides the one defined in arch.
50 #   - can define CPU_LDFLAGS variable (overriden by cmdline value) that
51 #     overrides the one defined in arch.
52 #   - can define CPU_ASFLAGS variable (overriden by cmdline value) that
53 #     overrides the one defined in arch.
54 #
55 # examples for RTE_MACHINE: default, pc, bensley, tylesburg, ...
56 #
57 include $(RTE_SDK)/mk/machine/$(RTE_MACHINE)/rte.vars.mk
58
59 #
60 # arch:
61 #
62 #   - define ARCH variable (overriden by cmdline or by previous
63 #     optional define in machine .mk)
64 #   - define CROSS variable (overriden by cmdline or previous define
65 #     in machine .mk)
66 #   - define CPU_CFLAGS variable (overriden by cmdline or previous
67 #     define in machine .mk)
68 #   - define CPU_LDFLAGS variable (overriden by cmdline or previous
69 #     define in machine .mk)
70 #   - define CPU_ASFLAGS variable (overriden by cmdline or previous
71 #     define in machine .mk)
72 #   - may override any previously defined variable
73 #
74 # examples for RTE_ARCH: i686, x86_64
75 #
76 include $(RTE_SDK)/mk/arch/$(RTE_ARCH)/rte.vars.mk
77
78 #
79 # toolchain:
80 #
81 #   - define CC, LD, AR, AS, ...
82 #   - define TOOLCHAIN_CFLAGS variable (overriden by cmdline value)
83 #   - define TOOLCHAIN_LDFLAGS variable (overriden by cmdline value)
84 #   - define TOOLCHAIN_ASFLAGS variable (overriden by cmdline value)
85 #   - may override any previously defined variable
86 #
87 # examples for RTE_TOOLCHAIN: gcc, icc
88 #
89 include $(RTE_SDK)/mk/toolchain/$(RTE_TOOLCHAIN)/rte.vars.mk
90
91 #
92 # exec-env:
93 #
94 #   - define EXECENV_CFLAGS variable (overriden by cmdline)
95 #   - define EXECENV_LDFLAGS variable (overriden by cmdline)
96 #   - define EXECENV_ASFLAGS variable (overriden by cmdline)
97 #   - may override any previously defined variable
98 #
99 # examples for RTE_EXEC_ENV: linuxapp, baremetal
100 #
101 include $(RTE_SDK)/mk/exec-env/$(RTE_EXEC_ENV)/rte.vars.mk
102
103 # Don't set CFLAGS/LDFLAGS flags for kernel module, all flags are
104 # provided by Kbuild framework.
105 ifeq ($(KERNELRELEASE),)
106
107 # merge all CFLAGS
108 CFLAGS := $(CPU_CFLAGS) $(EXECENV_CFLAGS) $(TOOLCHAIN_CFLAGS) $(MACHINE_CFLAGS)
109 CFLAGS += $(TARGET_CFLAGS)
110
111 # merge all LDFLAGS
112 LDFLAGS := $(CPU_LDFLAGS) $(EXECENV_LDFLAGS) $(TOOLCHAIN_LDFLAGS) $(MACHINE_LDFLAGS)
113 LDFLAGS += $(TARGET_LDFLAGS)
114
115 # merge all ASFLAGS
116 ASFLAGS := $(CPU_ASFLAGS) $(EXECENV_ASFLAGS) $(TOOLCHAIN_ASFLAGS) $(MACHINE_ASFLAGS)
117 ASFLAGS += $(TARGET_ASFLAGS)
118
119 # add default include and lib paths
120 CFLAGS += -I$(RTE_OUTPUT)/include
121 LDFLAGS += -L$(RTE_OUTPUT)/lib
122
123 # always include rte_config.h: the one in $(RTE_OUTPUT)/include is
124 # the configuration of SDK when $(BUILDING_RTE_SDK) is true, or the
125 # configuration of the application if $(BUILDING_RTE_SDK) is not
126 # defined.
127 ifeq ($(BUILDING_RTE_SDK),1)
128 # building sdk
129 CFLAGS += -include $(RTE_OUTPUT)/include/rte_config.h
130 ifeq ($(CONFIG_RTE_INSECURE_FUNCTION_WARNING),y)
131 CFLAGS += -include $(RTE_OUTPUT)/include/rte_warnings.h
132 endif
133 else
134 # if we are building an external application, include SDK's lib and
135 # includes too
136 CFLAGS += -I$(RTE_SDK_BIN)/include
137 ifneq ($(wildcard $(RTE_OUTPUT)/include/rte_config.h),)
138 CFLAGS += -include $(RTE_OUTPUT)/include/rte_config.h
139 endif
140 CFLAGS += -include $(RTE_SDK_BIN)/include/rte_config.h
141 ifeq ($(CONFIG_RTE_INSECURE_FUNCTION_WARNING),y)
142 CFLAGS += -include $(RTE_SDK_BIN)/include/rte_warnings.h
143 endif
144 LDFLAGS += -L$(RTE_SDK_BIN)/lib
145 endif
146
147 export CFLAGS
148 export LDFLAGS
149
150 endif