mk: fix make defconfig on FreeBSD
authorDavid Hunt <david.hunt@intel.com>
Mon, 23 Apr 2018 13:09:02 +0000 (14:09 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 23 Apr 2018 20:55:36 +0000 (22:55 +0200)
commit6ace79505d326d05aaa3c57facca7ca8e1675b11
treeef3e895f8f2a6e67f715f481010970e29e84f67b
parentb8c835909ea2056151614780b801331eeeae5333
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>
mk/rte.sdkconfig.mk