2017-12-19 15:49:04 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2013-07-19 13:53:08 +00:00
|
|
|
.PHONY: showversion
|
|
|
|
showversion:
|
2019-03-15 18:20:19 +00:00
|
|
|
@cat $(RTE_SRCDIR)/VERSION
|
2013-07-19 13:53:08 +00:00
|
|
|
|
2015-09-22 14:49:23 +00:00
|
|
|
.PHONY: showversionum
|
|
|
|
showversionum:
|
2019-03-15 18:20:19 +00:00
|
|
|
@cat $(RTE_SRCDIR)/VERSION | awk -F '.' '{print $$1$$2}'
|
2015-09-22 14:49:23 +00:00
|
|
|
|
2019-03-06 16:22:42 +00:00
|
|
|
INSTALL_CONFIGS := $(sort $(filter-out %app-icc,$(filter-out %app-clang,\
|
|
|
|
$(filter-out %app-gcc,$(filter-out %~,\
|
2012-09-04 12:54:00 +00:00
|
|
|
$(patsubst $(RTE_SRCDIR)/config/defconfig_%,%,\
|
2019-03-06 16:22:42 +00:00
|
|
|
$(wildcard $(RTE_SRCDIR)/config/defconfig_*)))))))
|
2012-09-04 12:54:00 +00:00
|
|
|
INSTALL_TARGETS := $(addsuffix _install,$(INSTALL_CONFIGS))
|
|
|
|
|
2013-05-07 13:43:57 +00:00
|
|
|
.PHONY: showconfigs
|
|
|
|
showconfigs:
|
|
|
|
@$(foreach CONFIG, $(INSTALL_CONFIGS), echo $(CONFIG);)
|
|
|
|
|
2014-06-10 13:42:57 +00:00
|
|
|
.PHONY: notemplate
|
|
|
|
notemplate:
|
2017-08-04 10:39:02 +00:00
|
|
|
@printf "No template specified. Use 'make defconfig' or "
|
|
|
|
@echo "use T=template from the following list:"
|
2013-05-07 13:43:57 +00:00
|
|
|
@$(MAKE) -rR showconfigs | sed 's,^, ,'
|
2014-06-10 13:42:57 +00:00
|
|
|
|
2017-08-04 10:39:02 +00:00
|
|
|
.PHONY: defconfig
|
|
|
|
defconfig:
|
|
|
|
@$(MAKE) config T=$(shell \
|
|
|
|
uname -m | awk '{ \
|
|
|
|
if ($$0 == "aarch64") { \
|
|
|
|
print "arm64-armv8a"} \
|
|
|
|
else if ($$0 == "armv7l") { \
|
|
|
|
print "arm-armv7a"} \
|
|
|
|
else if ($$0 == "ppc64") { \
|
|
|
|
print "ppc_64-power8"} \
|
mk: fix make defconfig on FreeBSD
On FreeBSD, make defconfig generates the config as
"defconfig_x86_64-bsdapp-", which does not resolve to any known
config file.
On FreeBSD, we get amd64 out of "uname -m", which was not handled by
the list of checks, but which now resolves to x86_64-native.
Then we run '$CC --version', and use grep -o with the list of known
compilers, and set to either gcc, icc or clang. Grep's '-o' option
returns the matched word rather than the whole line, making the
result easier to use.
The remaining code in the patch then takes ${compiler}, the "uname -m"
output and assembles them all together into a valid freebsd config name,
i.e. "defconfig_x86_64-native-bsdapp-clang".
Fixes: bce6c42c4ad5 ("mk: add sensible default target with defconfig")
Cc: stable@dpdk.org
Signed-off-by: David Hunt <david.hunt@intel.com>
Tested-by: Anatoly Burakov <anatoly.burakov@intel.com>
2018-04-23 13:09:02 +00:00
|
|
|
else if ($$0 == "amd64") { \
|
|
|
|
print "x86_64-native"} \
|
2017-08-04 10:39:02 +00:00
|
|
|
else { \
|
mk: fix make defconfig on FreeBSD
On FreeBSD, make defconfig generates the config as
"defconfig_x86_64-bsdapp-", which does not resolve to any known
config file.
On FreeBSD, we get amd64 out of "uname -m", which was not handled by
the list of checks, but which now resolves to x86_64-native.
Then we run '$CC --version', and use grep -o with the list of known
compilers, and set to either gcc, icc or clang. Grep's '-o' option
returns the matched word rather than the whole line, making the
result easier to use.
The remaining code in the patch then takes ${compiler}, the "uname -m"
output and assembles them all together into a valid freebsd config name,
i.e. "defconfig_x86_64-native-bsdapp-clang".
Fixes: bce6c42c4ad5 ("mk: add sensible default target with defconfig")
Cc: stable@dpdk.org
Signed-off-by: David Hunt <david.hunt@intel.com>
Tested-by: Anatoly Burakov <anatoly.burakov@intel.com>
2018-04-23 13:09:02 +00:00
|
|
|
printf "%s-native", $$0} }' \
|
|
|
|
)-$(shell \
|
2017-08-04 10:39:02 +00:00
|
|
|
uname | awk '{ \
|
|
|
|
if ($$0 == "Linux") { \
|
2019-03-06 16:22:42 +00:00
|
|
|
print "linux"} \
|
2017-08-04 10:39:02 +00:00
|
|
|
else { \
|
2019-03-06 16:22:42 +00:00
|
|
|
print "freebsd"} }' \
|
mk: fix make defconfig on FreeBSD
On FreeBSD, make defconfig generates the config as
"defconfig_x86_64-bsdapp-", which does not resolve to any known
config file.
On FreeBSD, we get amd64 out of "uname -m", which was not handled by
the list of checks, but which now resolves to x86_64-native.
Then we run '$CC --version', and use grep -o with the list of known
compilers, and set to either gcc, icc or clang. Grep's '-o' option
returns the matched word rather than the whole line, making the
result easier to use.
The remaining code in the patch then takes ${compiler}, the "uname -m"
output and assembles them all together into a valid freebsd config name,
i.e. "defconfig_x86_64-native-bsdapp-clang".
Fixes: bce6c42c4ad5 ("mk: add sensible default target with defconfig")
Cc: stable@dpdk.org
Signed-off-by: David Hunt <david.hunt@intel.com>
Tested-by: Anatoly Burakov <anatoly.burakov@intel.com>
2018-04-23 13:09:02 +00:00
|
|
|
)-$(shell \
|
|
|
|
${CC} --version | grep -o 'cc\|gcc\|icc\|clang' | awk \
|
|
|
|
'{ \
|
|
|
|
if ($$1 == "cc") { \
|
|
|
|
print "gcc" } \
|
|
|
|
else { \
|
|
|
|
print $$1 } \
|
|
|
|
}' \
|
|
|
|
)
|
2017-08-04 10:39:02 +00:00
|
|
|
|
2014-06-10 13:42:57 +00:00
|
|
|
.PHONY: config
|
|
|
|
ifeq ($(RTE_CONFIG_TEMPLATE),)
|
|
|
|
config: notemplate
|
2012-09-04 12:54:00 +00:00
|
|
|
else
|
|
|
|
config: $(RTE_OUTPUT)/include/rte_config.h $(RTE_OUTPUT)/Makefile
|
2017-08-04 10:39:02 +00:00
|
|
|
@echo "Configuration done using" \
|
|
|
|
$(patsubst defconfig_%,%,$(notdir $(RTE_CONFIG_TEMPLATE)))
|
2012-09-04 12:54:00 +00:00
|
|
|
endif
|
|
|
|
|
2014-06-10 13:42:57 +00:00
|
|
|
$(RTE_OUTPUT):
|
|
|
|
$(Q)mkdir -p $@
|
|
|
|
|
2012-09-04 12:54:00 +00:00
|
|
|
ifdef NODOTCONF
|
|
|
|
$(RTE_OUTPUT)/.config: ;
|
|
|
|
else
|
2016-07-06 09:13:06 +00:00
|
|
|
# Generate config from template, if there are duplicates keep only the last.
|
|
|
|
# To do so the temp config is checked for duplicate keys with cut/sort/uniq
|
|
|
|
# Then for each of those identified duplicates as long as there are more than
|
|
|
|
# just one left the last match is removed.
|
2019-03-15 18:20:21 +00:00
|
|
|
# Part of the config includes the version information taken from "VERSION"
|
|
|
|
# in the repo. This needs to be split into the various parts using sed and awk.
|
|
|
|
# To ensure correct version comparison, we append ".99" to the version number
|
|
|
|
# so that the version of a release is higher than that of its rc's.
|
2014-06-10 13:42:57 +00:00
|
|
|
$(RTE_OUTPUT)/.config: $(RTE_CONFIG_TEMPLATE) FORCE | $(RTE_OUTPUT)
|
2012-09-04 12:54:00 +00:00
|
|
|
$(Q)if [ "$(RTE_CONFIG_TEMPLATE)" != "" -a -f "$(RTE_CONFIG_TEMPLATE)" ]; then \
|
2013-11-08 02:00:00 +00:00
|
|
|
$(CPP) -undef -P -x assembler-with-cpp \
|
2019-03-15 18:20:21 +00:00
|
|
|
`cat $(RTE_SRCDIR)/VERSION | \
|
|
|
|
sed -e 's/-rc/.-rc./' -e 's/$$/..99/' | \
|
|
|
|
awk -F '.' '{print "-D__YEAR="int($$1), "-D__MONTH="int($$2), "-D__MINOR="int($$3), "-D__SUFFIX=\""$$4"\"", "-D__RELEASE="int($$5)}'` \
|
2015-03-05 07:31:01 +00:00
|
|
|
-ffreestanding \
|
2013-11-08 02:00:00 +00:00
|
|
|
-o $(RTE_OUTPUT)/.config_tmp $(RTE_CONFIG_TEMPLATE) ; \
|
2016-07-19 13:40:37 +00:00
|
|
|
config=$$(cat $(RTE_OUTPUT)/.config_tmp) ; \
|
|
|
|
echo "$$config" | awk -F '=' 'BEGIN {i=1} \
|
|
|
|
/^#/ {pos[i++]=$$0} \
|
|
|
|
!/^#/ {if (!s[$$1]) {pos[i]=$$0; s[$$1]=i++} \
|
|
|
|
else {pos[s[$$1]]=$$0}} END \
|
|
|
|
{for (j=1; j<i; j++) print pos[j]}' \
|
|
|
|
> $(RTE_OUTPUT)/.config_tmp ; \
|
2012-12-19 23:00:00 +00:00
|
|
|
if ! cmp -s $(RTE_OUTPUT)/.config_tmp $(RTE_OUTPUT)/.config; then \
|
|
|
|
cp $(RTE_OUTPUT)/.config_tmp $(RTE_OUTPUT)/.config ; \
|
mk: allow updates to build config on make install
When running "make config", an additional config.orig file is also
generated, which is intended to hold the original, clean configuration
from the template.
When running make install, we first check if there is no existing
.config file, and run make config if not. If there is a file, we then
check if it's unmodified, in which case we regenerate a new .config to
take account of any possible updates to the template. Finally, in the
case where there is an existing .config file, and it HAS been modified,
we then do a check to see if the template has had further updates, and
throw an error if so. If no updates, we continue with the build using
the existing, user-modified config.
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
Tested-by: Bruce Richardson <bruce.richardson@intel.com>
2014-05-14 15:55:10 +00:00
|
|
|
cp $(RTE_OUTPUT)/.config_tmp $(RTE_OUTPUT)/.config.orig ; \
|
2012-12-19 23:00:00 +00:00
|
|
|
fi ; \
|
|
|
|
rm -f $(RTE_OUTPUT)/.config_tmp ; \
|
2012-09-04 12:54:00 +00:00
|
|
|
else \
|
2014-06-10 13:42:57 +00:00
|
|
|
$(MAKE) -rRf $(RTE_SDK)/mk/rte.sdkconfig.mk notemplate; \
|
2012-09-04 12:54:00 +00:00
|
|
|
fi
|
|
|
|
endif
|
|
|
|
|
|
|
|
# generate a Makefile for this build directory
|
|
|
|
# use a relative path so it will continue to work even if we move the directory
|
2016-12-15 21:46:47 +00:00
|
|
|
SDK_RELPATH=$(shell $(RTE_SDK)/buildtools/relpath.sh $(abspath $(RTE_SRCDIR)) \
|
2012-09-04 12:54:00 +00:00
|
|
|
$(abspath $(RTE_OUTPUT)))
|
2016-12-15 21:46:47 +00:00
|
|
|
OUTPUT_RELPATH=$(shell $(RTE_SDK)/buildtools/relpath.sh $(abspath $(RTE_OUTPUT)) \
|
2012-09-04 12:54:00 +00:00
|
|
|
$(abspath $(RTE_SRCDIR)))
|
2014-06-10 13:42:57 +00:00
|
|
|
$(RTE_OUTPUT)/Makefile: | $(RTE_OUTPUT)
|
2018-11-12 12:26:15 +00:00
|
|
|
$(Q)$(RTE_SDK)/buildtools/gen-build-mk.sh $(SDK_RELPATH) > $@
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
# clean installed files, and generate a new config header file
|
|
|
|
# if NODOTCONF variable is defined, don't try to rebuild .config
|
|
|
|
$(RTE_OUTPUT)/include/rte_config.h: $(RTE_OUTPUT)/.config
|
|
|
|
$(Q)rm -rf $(RTE_OUTPUT)/include $(RTE_OUTPUT)/app \
|
2016-07-07 11:49:58 +00:00
|
|
|
$(RTE_OUTPUT)/lib \
|
2012-12-19 23:00:00 +00:00
|
|
|
$(RTE_OUTPUT)/hostlib $(RTE_OUTPUT)/kmod $(RTE_OUTPUT)/build
|
2014-06-10 13:42:57 +00:00
|
|
|
$(Q)mkdir -p $(RTE_OUTPUT)/include
|
2016-12-15 21:46:47 +00:00
|
|
|
$(Q)$(RTE_SDK)/buildtools/gen-config-h.sh $(RTE_OUTPUT)/.config \
|
2012-09-04 12:54:00 +00:00
|
|
|
> $(RTE_OUTPUT)/include/rte_config.h
|
|
|
|
|
|
|
|
# generate the rte_config.h
|
|
|
|
.PHONY: headerconfig
|
|
|
|
headerconfig: $(RTE_OUTPUT)/include/rte_config.h
|
|
|
|
@true
|
|
|
|
|
|
|
|
# check that .config is present, and if yes, check that rte_config.h
|
|
|
|
# is up to date
|
|
|
|
.PHONY: checkconfig
|
|
|
|
checkconfig:
|
|
|
|
@if [ ! -f $(RTE_OUTPUT)/.config ]; then \
|
|
|
|
echo "No .config in build directory"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
$(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk \
|
|
|
|
headerconfig NODOTCONF=1
|
|
|
|
|
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|