725e01df7453c5b3f453c1d3dd198349c8585034
[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 _LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)          += -lm
159 _LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)          += -lrt
160 _LDLIBS-$(CONFIG_RTE_LIBRTE_METER)          += -lm
161 ifeq ($(CONFIG_RTE_LIBRTE_VHOST_NUMA),y)
162 _LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)          += -lnuma
163 endif
164 _LDLIBS-$(CONFIG_RTE_PORT_PCAP)             += -lpcap
165 endif # !CONFIG_RTE_BUILD_SHARED_LIBS
166
167 _LDLIBS-y += $(EXECENV_LDLIBS)
168
169 LDLIBS += $(_LDLIBS-y) $(CPU_LDLIBS) $(EXTRA_LDLIBS)
170
171 # all the words except the first one
172 allbutfirst = $(wordlist 2,$(words $(1)),$(1))
173
174 # Eliminate duplicates without sorting, only keep the last occurrence
175 filter-libs = \
176         $(if $(1),$(strip\
177                 $(if \
178                         $(and \
179                                 $(filter $(firstword $(1)),$(call allbutfirst,$(1))),\
180                                 $(filter -l%,$(firstword $(1)))),\
181                         ,\
182                         $(firstword $(1))) \
183                 $(call filter-libs,$(call allbutfirst,$(1)))))
184
185 LDLIBS := $(call filter-libs,$(LDLIBS))
186
187 ifeq ($(RTE_DEVEL_BUILD)$(CONFIG_RTE_BUILD_SHARED_LIB),yy)
188 LDFLAGS += -rpath=$(RTE_SDK_BIN)/lib
189 endif
190
191 MAPFLAGS = -Map=$@.map --cref
192
193 .PHONY: all
194 all: install
195
196 .PHONY: install
197 install: build _postinstall
198
199 _postinstall: build
200
201 .PHONY: build
202 build: _postbuild
203
204 exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
205
206 ifeq ($(LINK_USING_CC),1)
207 O_TO_EXE = $(CC) -o $@ $(CFLAGS) $(OBJS-y) $(call linkerprefix, \
208         $(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
209         $(MAPFLAGS))
210 else
211 O_TO_EXE = $(LD) -o $@ $(OBJS-y) \
212         $(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
213         $(MAPFLAGS)
214 endif
215 O_TO_EXE_STR = $(subst ','\'',$(O_TO_EXE)) #'# fix syntax highlight
216 O_TO_EXE_DISP = $(if $(V),"$(O_TO_EXE_STR)","  LD $(@)")
217 O_TO_EXE_CMD = "cmd_$@ = $(O_TO_EXE_STR)"
218 O_TO_EXE_DO = @set -e; \
219         echo $(O_TO_EXE_DISP); \
220         $(O_TO_EXE) && \
221         echo $(O_TO_EXE_CMD) > $(call exe2cmd,$(@))
222
223 -include .$(APP).cmd
224
225 # path where libraries are retrieved
226 LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
227 LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
228
229 # list of .a files that are linked to this application
230 LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
231 LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
232
233 # list of found libraries files (useful for deps). If not found, the
234 # library is silently ignored and dep won't be checked
235 LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
236         $(addprefix $(dir)/,$(LDLIBS_NAMES))))
237
238 #
239 # Compile executable file if needed
240 #
241 $(APP): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(APP)) $(LDSCRIPT) FORCE
242         @[ -d $(dir $@) ] || mkdir -p $(dir $@)
243         $(if $(D),\
244                 @echo -n "$< -> $@ " ; \
245                 echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
246                 echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_EXE_STR))) " ; \
247                 echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
248                 echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
249         $(if $(or \
250                 $(file_missing),\
251                 $(call cmdline_changed,$(O_TO_EXE_STR)),\
252                 $(depfile_missing),\
253                 $(depfile_newer)),\
254                 $(O_TO_EXE_DO))
255
256 #
257 # install app in $(RTE_OUTPUT)/app
258 #
259 $(RTE_OUTPUT)/app/$(APP): $(APP)
260         @echo "  INSTALL-APP $(APP)"
261         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
262         $(Q)cp -f $(APP) $(RTE_OUTPUT)/app
263
264 #
265 # install app map file in $(RTE_OUTPUT)/app
266 #
267 $(RTE_OUTPUT)/app/$(APP).map: $(APP)
268         @echo "  INSTALL-MAP $(APP).map"
269         @[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
270         $(Q)cp -f $(APP).map $(RTE_OUTPUT)/app
271
272 #
273 # Clean all generated files
274 #
275 .PHONY: clean
276 clean: _postclean
277         $(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
278
279 .PHONY: doclean
280 doclean:
281         $(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
282           $(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
283
284
285 include $(RTE_SDK)/mk/internal/rte.compile-post.mk
286 include $(RTE_SDK)/mk/internal/rte.install-post.mk
287 include $(RTE_SDK)/mk/internal/rte.clean-post.mk
288 include $(RTE_SDK)/mk/internal/rte.build-post.mk
289 include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
290
291 ifneq ($(wildcard $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk),)
292 include $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk
293 else
294 include $(RTE_SDK)/mk/target/generic/rte.app.mk
295 endif
296
297 .PHONY: FORCE
298 FORCE: