New upstream version 16.11.7
[deb_dpdk.git] / mk / rte.app.mk
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
4 #   Copyright(c) 2014-2015 6WIND S.A.
5 #   All rights reserved.
6 #
7 #   Redistribution and use in source and binary forms, with or without
8 #   modification, are permitted provided that the following conditions
9 #   are met:
10 #
11 #     * Redistributions of source code must retain the above copyright
12 #       notice, this list of conditions and the following disclaimer.
13 #     * Redistributions in binary form must reproduce the above copyright
14 #       notice, this list of conditions and the following disclaimer in
15 #       the documentation and/or other materials provided with the
16 #       distribution.
17 #     * Neither the name of Intel Corporation nor the names of its
18 #       contributors may be used to endorse or promote products derived
19 #       from this software without specific prior written permission.
20 #
21 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
34 include $(RTE_SDK)/mk/internal/rte.install-pre.mk
35 include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
36 include $(RTE_SDK)/mk/internal/rte.build-pre.mk
37 include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
38
39 # VPATH contains at least SRCDIR
40 VPATH += $(SRCDIR)
41
42 _BUILD = $(APP)
43 _INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y)
44 _INSTALL += $(RTE_OUTPUT)/app/$(APP) $(RTE_OUTPUT)/app/$(APP).map
45 POSTINSTALL += target-appinstall
46 _CLEAN = doclean
47 POSTCLEAN += target-appclean
48
49 ifeq ($(NO_LDSCRIPT),)
50 LDSCRIPT = $(RTE_LDSCRIPT)
51 endif
52
53 # Link only the libraries used in the application
54 LDFLAGS += --as-needed
55
56 # default path for libs
57 _LDLIBS-y += -L$(RTE_SDK_BIN)/lib
58
59 #
60 # Order is important: from higher level to lower level
61 #
62
63 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
64 _LDLIBS-$(CONFIG_RTE_LIBRTE_KNI)            += -lrte_kni
65 endif
66
67 _LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE)       += -lrte_pipeline
68 _LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE)          += -lrte_table
69 _LDLIBS-$(CONFIG_RTE_LIBRTE_PORT)           += -lrte_port
70
71 _LDLIBS-$(CONFIG_RTE_LIBRTE_PDUMP)          += -lrte_pdump
72 _LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)    += -lrte_distributor
73 _LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)        += -lrte_reorder
74 _LDLIBS-$(CONFIG_RTE_LIBRTE_IP_FRAG)        += -lrte_ip_frag
75 _LDLIBS-$(CONFIG_RTE_LIBRTE_METER)          += -lrte_meter
76 _LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)          += -lrte_sched
77 _LDLIBS-$(CONFIG_RTE_LIBRTE_LPM)            += -lrte_lpm
78 # librte_acl needs --whole-archive because of weak functions
79 _LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)            += --whole-archive
80 _LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)            += -lrte_acl
81 _LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)            += --no-whole-archive
82 _LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS)       += -lrte_jobstats
83 _LDLIBS-$(CONFIG_RTE_LIBRTE_POWER)          += -lrte_power
84
85 _LDLIBS-y += --whole-archive
86
87 _LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER)          += -lrte_timer
88 _LDLIBS-$(CONFIG_RTE_LIBRTE_HASH)           += -lrte_hash
89 _LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)          += -lrte_vhost
90
91 _LDLIBS-$(CONFIG_RTE_LIBRTE_KVARGS)         += -lrte_kvargs
92 _LDLIBS-$(CONFIG_RTE_LIBRTE_MBUF)           += -lrte_mbuf
93 _LDLIBS-$(CONFIG_RTE_LIBRTE_NET)            += -lrte_net
94 _LDLIBS-$(CONFIG_RTE_LIBRTE_ETHER)          += -lrte_ethdev
95 _LDLIBS-$(CONFIG_RTE_LIBRTE_CRYPTODEV)      += -lrte_cryptodev
96 _LDLIBS-$(CONFIG_RTE_LIBRTE_MEMPOOL)        += -lrte_mempool
97 _LDLIBS-$(CONFIG_RTE_LIBRTE_RING)           += -lrte_ring
98 _LDLIBS-$(CONFIG_RTE_LIBRTE_EAL)            += -lrte_eal
99 _LDLIBS-$(CONFIG_RTE_LIBRTE_CMDLINE)        += -lrte_cmdline
100 _LDLIBS-$(CONFIG_RTE_LIBRTE_CFGFILE)        += -lrte_cfgfile
101
102 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_BOND)       += -lrte_pmd_bond
103 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_XENVIRT)    += -lrte_pmd_xenvirt -lxenstore
104
105 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
106 # plugins (link only if static libraries)
107
108 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AF_PACKET)  += -lrte_pmd_af_packet
109 _LDLIBS-$(CONFIG_RTE_LIBRTE_BNX2X_PMD)      += -lrte_pmd_bnx2x -lz
110 _LDLIBS-$(CONFIG_RTE_LIBRTE_BNXT_PMD)       += -lrte_pmd_bnxt
111 _LDLIBS-$(CONFIG_RTE_LIBRTE_CXGBE_PMD)      += -lrte_pmd_cxgbe
112 _LDLIBS-$(CONFIG_RTE_LIBRTE_E1000_PMD)      += -lrte_pmd_e1000
113 _LDLIBS-$(CONFIG_RTE_LIBRTE_ENA_PMD)        += -lrte_pmd_ena
114 _LDLIBS-$(CONFIG_RTE_LIBRTE_ENIC_PMD)       += -lrte_pmd_enic
115 _LDLIBS-$(CONFIG_RTE_LIBRTE_FM10K_PMD)      += -lrte_pmd_fm10k
116 _LDLIBS-$(CONFIG_RTE_LIBRTE_I40E_PMD)       += -lrte_pmd_i40e
117 _LDLIBS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD)      += -lrte_pmd_ixgbe
118 _LDLIBS-$(CONFIG_RTE_LIBRTE_MLX4_PMD)       += -lrte_pmd_mlx4 -libverbs
119 _LDLIBS-$(CONFIG_RTE_LIBRTE_MLX5_PMD)       += -lrte_pmd_mlx5 -libverbs
120 _LDLIBS-$(CONFIG_RTE_LIBRTE_MPIPE_PMD)      += -lrte_pmd_mpipe -lgxio
121 _LDLIBS-$(CONFIG_RTE_LIBRTE_NFP_PMD)        += -lrte_pmd_nfp -lm
122 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_NULL)       += -lrte_pmd_null
123 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_PCAP)       += -lrte_pmd_pcap -lpcap
124 _LDLIBS-$(CONFIG_RTE_LIBRTE_QEDE_PMD)       += -lrte_pmd_qede
125 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_RING)       += -lrte_pmd_ring
126 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SZEDATA2)   += -lrte_pmd_szedata2 -lsze2
127 _LDLIBS-$(CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD) += -lrte_pmd_thunderx_nicvf -lm
128 _LDLIBS-$(CONFIG_RTE_LIBRTE_VIRTIO_PMD)     += -lrte_pmd_virtio
129 ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)
130 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_VHOST)      += -lrte_pmd_vhost
131 endif # $(CONFIG_RTE_LIBRTE_VHOST)
132 _LDLIBS-$(CONFIG_RTE_LIBRTE_VMXNET3_PMD)    += -lrte_pmd_vmxnet3_uio
133
134 ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y)
135 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_MB)    += -lrte_pmd_aesni_mb
136 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_MB)    += -L$(AESNI_MULTI_BUFFER_LIB_PATH) -lIPSec_MB
137 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_GCM)   += -lrte_pmd_aesni_gcm -lcrypto
138 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_GCM)   += -L$(AESNI_MULTI_BUFFER_LIB_PATH) -lIPSec_MB
139 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_OPENSSL)     += -lrte_pmd_openssl -lcrypto
140 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += -lrte_pmd_null_crypto
141 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_QAT)         += -lrte_pmd_qat -lcrypto
142 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SNOW3G)      += -lrte_pmd_snow3g
143 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SNOW3G)      += -L$(LIBSSO_SNOW3G_PATH)/build -lsso_snow3g
144 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI)      += -lrte_pmd_kasumi
145 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI)      += -L$(LIBSSO_KASUMI_PATH)/build -lsso_kasumi
146 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_ZUC)         += -lrte_pmd_zuc
147 _LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_ZUC)         += -L$(LIBSSO_ZUC_PATH)/build -lsso_zuc
148 endif # CONFIG_RTE_LIBRTE_CRYPTODEV
149
150 endif # !CONFIG_RTE_BUILD_SHARED_LIBS
151
152 _LDLIBS-y += --no-whole-archive
153
154 ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
155 # The static libraries do not know their dependencies.
156 # So linking with static library requires explicit dependencies.
157 _LDLIBS-$(CONFIG_RTE_LIBRTE_EAL)            += -lrt
158 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP)$(CONFIG_RTE_USE_LIBBSD),yy)
159 _LDLIBS-$(CONFIG_RTE_LIBRTE_EAL)            += -lbsd
160 endif
161 _LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)          += -lm
162 _LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)          += -lrt
163 _LDLIBS-$(CONFIG_RTE_LIBRTE_METER)          += -lm
164 ifeq ($(CONFIG_RTE_LIBRTE_VHOST_NUMA),y)
165 _LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)          += -lnuma
166 endif
167 _LDLIBS-$(CONFIG_RTE_PORT_PCAP)             += -lpcap
168 endif # !CONFIG_RTE_BUILD_SHARED_LIBS
169
170 _LDLIBS-y += $(EXECENV_LDLIBS)
171
172 LDLIBS += $(_LDLIBS-y) $(CPU_LDLIBS) $(EXTRA_LDLIBS)
173
174 # all the words except the first one
175 allbutfirst = $(wordlist 2,$(words $(1)),$(1))
176
177 # Eliminate duplicates without sorting, only keep the last occurrence
178 filter-libs = \
179         $(if $(1),$(strip\
180                 $(if \
181                         $(and \
182                                 $(filter $(firstword $(1)),$(call allbutfirst,$(1))),\
183                                 $(filter -l%,$(firstword $(1)))),\
184                         ,\
185                         $(firstword $(1))) \
186                 $(call filter-libs,$(call allbutfirst,$(1)))))
187
188 LDLIBS := $(call filter-libs,$(LDLIBS))
189
190 ifeq ($(RTE_DEVEL_BUILD)$(CONFIG_RTE_BUILD_SHARED_LIB),yy)
191 LDFLAGS += -rpath=$(RTE_SDK_BIN)/lib
192 endif
193
194 MAPFLAGS = -Map=$@.map --cref
195
196 .PHONY: all
197 all: install
198
199 .PHONY: install
200 install: build _postinstall
201
202 _postinstall: build
203
204 .PHONY: build
205 build: _postbuild
206
207 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
208
209 ifeq ($(LINK_USING_CC),1)
210 O_TO_EXE = $(CC) -o $@ $(CFLAGS) $(OBJS-y) $(call linkerprefix, \
211         $(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
212         $(MAPFLAGS))
213 else
214 O_TO_EXE = $(LD) -o $@ $(OBJS-y) \
215         $(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
216         $(MAPFLAGS)
217 endif
218 O_TO_EXE_STR = $(subst ','\'',$(O_TO_EXE)) #'# fix syntax highlight
219 O_TO_EXE_DISP = $(if $(V),"$(O_TO_EXE_STR)","  LD $(@)")
220 O_TO_EXE_CMD = "cmd_$@ = $(O_TO_EXE_STR)"
221 O_TO_EXE_DO = @set -e; \
222         echo $(O_TO_EXE_DISP); \
223         $(O_TO_EXE) && \
224         echo $(O_TO_EXE_CMD) > $(call exe2cmd,$(@))
225
226 -include .$(APP).cmd
227
228 # path where libraries are retrieved
229 LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
230 LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
231
232 # list of .a files that are linked to this application
233 LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
234 LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
235
236 # list of found libraries files (useful for deps). If not found, the
237 # library is silently ignored and dep won't be checked
238 LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
239         $(addprefix $(dir)/,$(LDLIBS_NAMES))))
240
241 #
242 # Compile executable file if needed
243 #
244 $(APP): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(APP)) $(LDSCRIPT) FORCE
245         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
246         $(if $(D),\
247                 @echo -n "$< -> $@ " ; \
248                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
249                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_EXE_STR))) " ; \
250                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
251                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
252         $(if $(or \
253                 $(file_missing),\
254                 $(call cmdline_changed,$(O_TO_EXE_STR)),\
255                 $(depfile_missing),\
256                 $(depfile_newer)),\
257                 $(O_TO_EXE_DO))
258
259 #
260 # install app in $(RTE_OUTPUT)/app
261 #
262 $(RTE_OUTPUT)/app/$(APP): $(APP)
263         @echo "  INSTALL-APP $(APP)"
264         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
265         $(Q)cp -f $(APP) $(RTE_OUTPUT)/app
266
267 #
268 # install app map file in $(RTE_OUTPUT)/app
269 #
270 $(RTE_OUTPUT)/app/$(APP).map: $(APP)
271         @echo "  INSTALL-MAP $(APP).map"
272         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
273         $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app
274
275 #
276 # Clean all generated files
277 #
278 .PHONY: clean
279 clean: _postclean
280         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
281
282 .PHONY: doclean
283 doclean:
284         $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
285           $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
286
287
288 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
289 include $(RTE_SDK)/mk/internal/rte.install-post.mk
290 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
291 include $(RTE_SDK)/mk/internal/rte.build-post.mk
292 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
293
294 ifneq ($(wildcard $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk),)
295 include $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk
296 else
297 include $(RTE_SDK)/mk/target/generic/rte.app.mk
298 endif
299
300 .PHONY: FORCE
301 FORCE: