2012-09-04 12:54:00 +00:00
|
|
|
# BSD LICENSE
|
2014-06-03 23:42:50 +00:00
|
|
|
#
|
2016-03-10 16:33:12 +00:00
|
|
|
# Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
|
2015-05-14 14:21:31 +00:00
|
|
|
# Copyright(c) 2014-2015 6WIND S.A.
|
2012-09-04 12:54:00 +00:00
|
|
|
# All rights reserved.
|
2014-06-03 23:42:50 +00:00
|
|
|
#
|
2013-09-18 10:00:00 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
2012-09-04 12:54:00 +00:00
|
|
|
# are met:
|
2014-06-03 23:42:50 +00:00
|
|
|
#
|
2013-09-18 10:00:00 +00:00
|
|
|
# * Redistributions of source code must retain the above copyright
|
2012-09-04 12:54:00 +00:00
|
|
|
# notice, this list of conditions and the following disclaimer.
|
2013-09-18 10:00:00 +00:00
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
2012-09-04 12:54:00 +00:00
|
|
|
# distribution.
|
2013-09-18 10:00:00 +00:00
|
|
|
# * Neither the name of Intel Corporation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
2012-09-04 12:54:00 +00:00
|
|
|
# from this software without specific prior written permission.
|
2014-06-03 23:42:50 +00:00
|
|
|
#
|
2013-09-18 10:00:00 +00:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2012-09-04 12:54:00 +00:00
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.compile-pre.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.install-pre.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.clean-pre.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.build-pre.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.depdirs-pre.mk
|
|
|
|
|
|
|
|
# VPATH contains at least SRCDIR
|
|
|
|
VPATH += $(SRCDIR)
|
|
|
|
|
|
|
|
_BUILD = $(APP)
|
|
|
|
_INSTALL = $(INSTALL-FILES-y) $(SYMLINK-FILES-y)
|
|
|
|
_INSTALL += $(RTE_OUTPUT)/app/$(APP) $(RTE_OUTPUT)/app/$(APP).map
|
|
|
|
POSTINSTALL += target-appinstall
|
|
|
|
_CLEAN = doclean
|
|
|
|
POSTCLEAN += target-appclean
|
|
|
|
|
|
|
|
ifeq ($(NO_LDSCRIPT),)
|
|
|
|
LDSCRIPT = $(RTE_LDSCRIPT)
|
|
|
|
endif
|
|
|
|
|
2016-06-10 13:19:07 +00:00
|
|
|
# Link only the libraries used in the application
|
|
|
|
LDFLAGS += --as-needed
|
|
|
|
|
2012-09-04 12:54:00 +00:00
|
|
|
# default path for libs
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-y += -L$(RTE_SDK_BIN)/lib
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Order is important: from higher level to lower level
|
|
|
|
#
|
2014-02-28 17:25:40 +00:00
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_KNI) += -lrte_kni
|
2012-12-19 23:00:00 +00:00
|
|
|
endif
|
|
|
|
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE) += -lrte_pipeline
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE) += -lrte_table
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PORT) += -lrte_port
|
2016-06-10 13:19:08 +00:00
|
|
|
|
pdump: add new library for packet capture
The librte_pdump library provides a framework for
packet capturing in dpdk. The library provides set of
APIs to initialize the packet capture framework, to
enable or disable the packet capture, and to uninitialize
it.
The librte_pdump library works on a client/server model.
The server is responsible for enabling or disabling the
packet capture and the clients are responsible
for requesting the enabling or disabling of the packet
capture.
Enabling APIs are supported with port, queue, ring and
mempool parameters. Applications should pass on this information
to get the packets from the dpdk ports.
For enabling requests from applications, library creates the client
request containing the mempool, ring, port and queue information and
sends the request to the server. After receiving the request, server
registers the Rx and Tx callbacks for all the port and queues.
After the callbacks registration, registered callbacks will get the
Rx and Tx packets. Packets then will be copied to the new mbufs that
are allocated from the user passed mempool. These new mbufs then will
be enqueued to the application passed ring. Applications need to dequeue
the mbufs from the rings and direct them to the devices like
pcap vdev for viewing the packets outside of the dpdk
using the packet capture tools.
For disabling requests, library creates the client request containing
the port and queue information and sends the request to the server.
After receiving the request, server removes the Rx and Tx callback
for all the port and queues.
Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
2016-06-15 14:06:22 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PDUMP) += -lrte_pdump
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) += -lrte_distributor
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER) += -lrte_reorder
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += -lrte_ip_frag
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_METER) += -lrte_meter
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lrte_sched
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_LPM) += -lrte_lpm
|
2016-07-01 14:38:49 +00:00
|
|
|
# librte_acl needs --whole-archive because of weak functions
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ACL) += --whole-archive
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ACL) += -lrte_acl
|
2016-07-01 14:38:49 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ACL) += --no-whole-archive
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS) += -lrte_jobstats
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_POWER) += -lrte_power
|
2015-02-11 13:43:10 +00:00
|
|
|
|
2016-06-10 13:19:09 +00:00
|
|
|
_LDLIBS-y += --whole-archive
|
|
|
|
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER) += -lrte_timer
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_HASH) += -lrte_hash
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST) += -lrte_vhost
|
2015-12-03 07:04:23 +00:00
|
|
|
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_KVARGS) += -lrte_kvargs
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_MBUF) += -lrte_mbuf
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ETHER) += -lethdev
|
2015-11-25 13:25:12 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += -lrte_cryptodev
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_MEMPOOL) += -lrte_mempool
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_RING) += -lrte_ring
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_EAL) += -lrte_eal
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_CMDLINE) += -lrte_cmdline
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_CFGFILE) += -lrte_cfgfile
|
2016-06-10 13:19:08 +00:00
|
|
|
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_BOND) += -lrte_pmd_bond
|
2016-06-10 13:19:05 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_XENVIRT) += -lrte_pmd_xenvirt -lxenstore
|
2014-02-12 15:50:11 +00:00
|
|
|
|
mk: fix linking drivers in static apps
The variable CONFIG_RTE_BUILD_SHARED_LIB was in rte.app.mk as
"RTE_BUILD_SHARED_LIB", which meant that none of the example apps linked
in the PMDs and just didn't work with any eth ports in any static builds.
This bug has been introduced in commit 3660cdf990:
pcap: convert to use of PMD_REGISTER_DRIVER and fix linking
Link for l2fwd before patch:
"... -Wl,--whole-archive -Wl,-lrte_kni -Wl,-lrte_timer -Wl,-lrte_hash
-Wl,-lrte_lpm -Wl,-lrte_power -Wl,-lrte_meter -Wl,-lrte_sched -Wl,-lm
-Wl,-lrt -Wl,--start-group -Wl,-lrte_kvargs -Wl,-lrte_mbuf -Wl,-lethdev
-Wl,-lrte_malloc -Wl,-lrte_mempool -Wl,-lrte_ring -Wl,-lrte_eal
-Wl,-lrte_cmdline -Wl,-lrt -Wl,-lm -Wl,-ldl -Wl,--end-group
-Wl,--no-whole-archive"
Link for l2fwd after patch:
"... -Wl,--whole-archive -Wl,-lrte_kni -Wl,-lrte_timer -Wl,-lrte_hash
-Wl,-lrte_lpm -Wl,-lrte_power -Wl,-lrte_meter -Wl,-lrte_sched -Wl,-lm
-Wl,-lrt -Wl,--start-group -Wl,-lrte_kvargs -Wl,-lrte_mbuf -Wl,-lethdev
-Wl,-lrte_malloc -Wl,-lrte_mempool -Wl,-lrte_ring -Wl,-lrte_eal
-Wl,-lrte_cmdline -Wl,-lrte_pmd_vmxnet3_uio -Wl,-lrte_pmd_virtio_uio
-Wl,-lrte_pmd_ixgbe -Wl,-lrte_pmd_e1000 -Wl,-lrte_pmd_ring -Wl,-lrt
-Wl,-lm -Wl,-ldl -Wl,--end-group -Wl,--no-whole-archive"
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
2014-05-23 14:39:24 +00:00
|
|
|
ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
|
2014-06-25 20:07:43 +00:00
|
|
|
# plugins (link only if static libraries)
|
ring: convert to use of PMD_REGISTER_DRIVER and fix linking
Convert the ring driver to use the PMD_REGISTER_DRIVER macro and fix up the
Makefile so that its linkage is only done if we are building static libraries.
This means that the test applications now have no reference to the ring library
when building DSO's and must specify its use on the command line with the -d
option. Static linking will still initalize the driver automatically.
Note that the ring driver was also written in such a way that it violated some
general layering principles, several functions were contained in the pmd which
were being called by example from the test application in the app/test
directory. Specifically it was calling eth_ring_pair_attach,
eth_ring_pair_create and rte_eth_ring_devinit, which should only be called
internally to the dpdk core library. To correct this I've removed those
functions, and instead allowed them to be called indirectly at initalization
time using the vdev command line argument key nodeaction=<name>:<node>:<action>
where action is one of ATTACH or CREATE. I've tested out the functionality of
the command line with the testpmd utility, with success, and have removed the
called functions from the test utility. This will affect how the test utility
is invoked (the -d and --vdev option will need to be specified on the command
line now), but honestly, given the way it was coded, I think the testing of the
ring pmd was not the best example of how to code with dpdk to begin with. I
have also left the two layer violating functions in place, so as not to break
existing applications, but added deprecation warnings to them so that apps can
migrate off them.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
2014-04-21 14:59:29 +00:00
|
|
|
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AF_PACKET) += -lrte_pmd_af_packet
|
2016-06-10 13:19:05 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_BNX2X_PMD) += -lrte_pmd_bnx2x -lz
|
2016-06-15 21:23:01 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_BNXT_PMD) += -lrte_pmd_bnxt
|
2015-06-29 23:28:35 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_CXGBE_PMD) += -lrte_pmd_cxgbe
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_E1000_PMD) += -lrte_pmd_e1000
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ENA_PMD) += -lrte_pmd_ena
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += -lrte_pmd_enic
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_FM10K_PMD) += -lrte_pmd_fm10k
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_I40E_PMD) += -lrte_pmd_i40e
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += -lrte_pmd_ixgbe
|
2016-06-10 13:19:05 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += -lrte_pmd_mlx4 -libverbs
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_MLX5_PMD) += -lrte_pmd_mlx5 -libverbs
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_MPIPE_PMD) += -lrte_pmd_mpipe -lgxio
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_NFP_PMD) += -lrte_pmd_nfp -lm
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_NULL) += -lrte_pmd_null
|
2016-06-10 13:19:05 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += -lrte_pmd_pcap -lpcap
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_QEDE_PMD) += -lrte_pmd_qede -lz
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_RING) += -lrte_pmd_ring
|
2016-06-10 13:19:05 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SZEDATA2) += -lrte_pmd_szedata2 -lsze2
|
2016-06-17 13:29:35 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD) += -lrte_pmd_thunderx_nicvf -lm
|
2016-06-10 13:19:04 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_VIRTIO_PMD) += -lrte_pmd_virtio
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_VHOST) += -lrte_pmd_vhost
|
|
|
|
endif # $(CONFIG_RTE_LIBRTE_VHOST)
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_VMXNET3_PMD) += -lrte_pmd_vmxnet3_uio
|
2015-11-25 13:25:14 +00:00
|
|
|
|
2016-03-11 13:29:40 +00:00
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y)
|
2016-10-04 15:11:19 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_MB) += -lrte_pmd_aesni_mb
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_MB) += -L$(AESNI_MULTI_BUFFER_LIB_PATH) -lIPSec_MB
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_GCM) += -lrte_pmd_aesni_gcm -lcrypto
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_AESNI_GCM) += -L$(AESNI_MULTI_BUFFER_LIB_PATH) -lIPSec_MB
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_LIBCRYPTO) += -lrte_pmd_libcrypto -lcrypto
|
2016-03-11 01:04:10 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += -lrte_pmd_null_crypto
|
2016-10-04 15:11:19 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_QAT) += -lrte_pmd_qat -lcrypto
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SNOW3G) += -lrte_pmd_snow3g
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_SNOW3G) += -L$(LIBSSO_SNOW3G_PATH)/build -lsso_snow3g
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI) += -lrte_pmd_kasumi
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI) += -L$(LIBSSO_KASUMI_PATH)/build -lsso_kasumi
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_ZUC) += -lrte_pmd_zuc
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_ZUC) += -L$(LIBSSO_ZUC_PATH)/build -lsso_zuc
|
2016-03-11 13:29:40 +00:00
|
|
|
endif # CONFIG_RTE_LIBRTE_CRYPTODEV
|
2016-03-10 16:33:12 +00:00
|
|
|
|
2016-06-10 13:19:08 +00:00
|
|
|
endif # !CONFIG_RTE_BUILD_SHARED_LIBS
|
|
|
|
|
2016-06-10 13:19:09 +00:00
|
|
|
_LDLIBS-y += --no-whole-archive
|
|
|
|
|
2016-06-10 13:19:08 +00:00
|
|
|
ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n)
|
|
|
|
# The static libraries do not know their dependencies.
|
|
|
|
# So linking with static library requires explicit dependencies.
|
2016-07-18 09:33:52 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_EAL) += -lrt
|
2016-06-10 13:19:08 +00:00
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lm
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lrt
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_METER) += -lm
|
|
|
|
ifeq ($(CONFIG_RTE_LIBRTE_VHOST_NUMA),y)
|
|
|
|
_LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST) += -lnuma
|
|
|
|
endif
|
|
|
|
_LDLIBS-$(CONFIG_RTE_PORT_PCAP) += -lpcap
|
|
|
|
endif # !CONFIG_RTE_BUILD_SHARED_LIBS
|
2013-09-18 10:00:00 +00:00
|
|
|
|
2015-05-14 14:21:31 +00:00
|
|
|
_LDLIBS-y += $(EXECENV_LDLIBS)
|
2016-06-10 13:19:06 +00:00
|
|
|
|
2015-05-14 14:21:32 +00:00
|
|
|
LDLIBS += $(_LDLIBS-y) $(CPU_LDLIBS) $(EXTRA_LDLIBS)
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2016-03-21 11:33:57 +00:00
|
|
|
# Eliminate duplicates without sorting
|
|
|
|
LDLIBS := $(shell echo $(LDLIBS) | \
|
2016-07-01 14:38:48 +00:00
|
|
|
awk '{for (i = 1; i <= NF; i++) { \
|
|
|
|
if ($$i !~ /^-l.*/ || !seen[$$i]++) print $$i }}')
|
2016-03-21 11:33:57 +00:00
|
|
|
|
2016-05-03 15:03:39 +00:00
|
|
|
ifeq ($(RTE_DEVEL_BUILD)$(CONFIG_RTE_BUILD_SHARED_LIB),yy)
|
|
|
|
LDFLAGS += -rpath=$(RTE_SDK_BIN)/lib
|
|
|
|
endif
|
|
|
|
|
2016-07-12 12:25:35 +00:00
|
|
|
MAPFLAGS = -Map=$@.map --cref
|
|
|
|
|
2012-09-04 12:54:00 +00:00
|
|
|
.PHONY: all
|
|
|
|
all: install
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
install: build _postinstall
|
|
|
|
|
|
|
|
_postinstall: build
|
|
|
|
|
|
|
|
.PHONY: build
|
|
|
|
build: _postbuild
|
|
|
|
|
|
|
|
exe2cmd = $(strip $(call dotfile,$(patsubst %,%.cmd,$(1))))
|
|
|
|
|
|
|
|
ifeq ($(LINK_USING_CC),1)
|
2016-07-12 12:25:35 +00:00
|
|
|
O_TO_EXE = $(CC) -o $@ $(CFLAGS) $(OBJS-y) $(call linkerprefix, \
|
2016-07-12 13:00:13 +00:00
|
|
|
$(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
|
2016-07-12 12:25:35 +00:00
|
|
|
$(MAPFLAGS))
|
2012-09-04 12:54:00 +00:00
|
|
|
else
|
2016-07-12 12:25:35 +00:00
|
|
|
O_TO_EXE = $(LD) -o $@ $(OBJS-y) \
|
2016-07-12 13:00:13 +00:00
|
|
|
$(LDLIBS) $(LDFLAGS) $(LDFLAGS_$(@)) $(EXTRA_LDFLAGS) \
|
2016-07-12 12:25:35 +00:00
|
|
|
$(MAPFLAGS)
|
2012-09-04 12:54:00 +00:00
|
|
|
endif
|
|
|
|
O_TO_EXE_STR = $(subst ','\'',$(O_TO_EXE)) #'# fix syntax highlight
|
|
|
|
O_TO_EXE_DISP = $(if $(V),"$(O_TO_EXE_STR)"," LD $(@)")
|
|
|
|
O_TO_EXE_CMD = "cmd_$@ = $(O_TO_EXE_STR)"
|
|
|
|
O_TO_EXE_DO = @set -e; \
|
|
|
|
echo $(O_TO_EXE_DISP); \
|
|
|
|
$(O_TO_EXE) && \
|
|
|
|
echo $(O_TO_EXE_CMD) > $(call exe2cmd,$(@))
|
|
|
|
|
|
|
|
-include .$(APP).cmd
|
|
|
|
|
|
|
|
# path where libraries are retrieved
|
|
|
|
LDLIBS_PATH := $(subst -Wl$(comma)-L,,$(filter -Wl$(comma)-L%,$(LDLIBS)))
|
|
|
|
LDLIBS_PATH += $(subst -L,,$(filter -L%,$(LDLIBS)))
|
|
|
|
|
|
|
|
# list of .a files that are linked to this application
|
|
|
|
LDLIBS_NAMES := $(patsubst -l%,lib%.a,$(filter -l%,$(LDLIBS)))
|
|
|
|
LDLIBS_NAMES += $(patsubst -Wl$(comma)-l%,lib%.a,$(filter -Wl$(comma)-l%,$(LDLIBS)))
|
|
|
|
|
|
|
|
# list of found libraries files (useful for deps). If not found, the
|
|
|
|
# library is silently ignored and dep won't be checked
|
|
|
|
LDLIBS_FILES := $(wildcard $(foreach dir,$(LDLIBS_PATH),\
|
|
|
|
$(addprefix $(dir)/,$(LDLIBS_NAMES))))
|
|
|
|
|
|
|
|
#
|
|
|
|
# Compile executable file if needed
|
|
|
|
#
|
|
|
|
$(APP): $(OBJS-y) $(LDLIBS_FILES) $(DEP_$(APP)) $(LDSCRIPT) FORCE
|
|
|
|
@[ -d $(dir $@) ] || mkdir -p $(dir $@)
|
|
|
|
$(if $(D),\
|
|
|
|
@echo -n "$< -> $@ " ; \
|
|
|
|
echo -n "file_missing=$(call boolean,$(file_missing)) " ; \
|
|
|
|
echo -n "cmdline_changed=$(call boolean,$(call cmdline_changed,$(O_TO_EXE_STR))) " ; \
|
|
|
|
echo -n "depfile_missing=$(call boolean,$(depfile_missing)) " ; \
|
|
|
|
echo "depfile_newer=$(call boolean,$(depfile_newer)) ")
|
|
|
|
$(if $(or \
|
|
|
|
$(file_missing),\
|
|
|
|
$(call cmdline_changed,$(O_TO_EXE_STR)),\
|
|
|
|
$(depfile_missing),\
|
|
|
|
$(depfile_newer)),\
|
|
|
|
$(O_TO_EXE_DO))
|
|
|
|
|
|
|
|
#
|
|
|
|
# install app in $(RTE_OUTPUT)/app
|
|
|
|
#
|
|
|
|
$(RTE_OUTPUT)/app/$(APP): $(APP)
|
|
|
|
@echo " INSTALL-APP $(APP)"
|
|
|
|
@[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
|
|
|
|
$(Q)cp -f $(APP) $(RTE_OUTPUT)/app
|
|
|
|
|
|
|
|
#
|
|
|
|
# install app map file in $(RTE_OUTPUT)/app
|
|
|
|
#
|
|
|
|
$(RTE_OUTPUT)/app/$(APP).map: $(APP)
|
|
|
|
@echo " INSTALL-MAP $(APP).map"
|
|
|
|
@[ -d $(RTE_OUTPUT)/app ] || mkdir -p $(RTE_OUTPUT)/app
|
|
|
|
$(Q)cp -f $(APP).map $(RTE_OUTPUT)/app
|
|
|
|
|
|
|
|
#
|
|
|
|
# Clean all generated files
|
|
|
|
#
|
|
|
|
.PHONY: clean
|
2015-01-30 10:35:14 +00:00
|
|
|
clean: _postclean
|
2012-09-04 12:54:00 +00:00
|
|
|
$(Q)rm -f $(_BUILD_TARGETS) $(_INSTALL_TARGETS) $(_CLEAN_TARGETS)
|
|
|
|
|
|
|
|
.PHONY: doclean
|
|
|
|
doclean:
|
|
|
|
$(Q)rm -rf $(APP) $(OBJS-all) $(DEPS-all) $(DEPSTMP-all) \
|
|
|
|
$(CMDS-all) $(INSTALL-FILES-all) .$(APP).cmd
|
|
|
|
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.compile-post.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.install-post.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.clean-post.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.build-post.mk
|
|
|
|
include $(RTE_SDK)/mk/internal/rte.depdirs-post.mk
|
|
|
|
|
|
|
|
ifneq ($(wildcard $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk),)
|
|
|
|
include $(RTE_SDK)/mk/target/$(RTE_TARGET)/rte.app.mk
|
|
|
|
else
|
|
|
|
include $(RTE_SDK)/mk/target/generic/rte.app.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|