diff options
author | Lee Chee Yang <chee.yang.lee@intel.com> | 2023-10-05 15:04:16 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2023-10-06 08:56:32 +0800 |
commit | 3493058e7dcf00c78517ec5efb6457ebb1e85089 (patch) | |
tree | 8988c3cfe04292076178a0d034533c8d0b9dab24 /dynamic-layers/clang-layer | |
parent | 4ca36ee060fa39ad50a8e7b6398481bf605f182f (diff) | |
download | meta-dpdk-3493058e7dcf00c78517ec5efb6457ebb1e85089.tar.gz |
xdp-tools: update to 1.2.10
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'dynamic-layers/clang-layer')
-rw-r--r-- | dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools/0001-configure-skip-toolchain-checks.patch | 18 | ||||
-rw-r--r-- | dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.10.bb (renamed from dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb) | 2 |
2 files changed, 9 insertions, 11 deletions
diff --git a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools/0001-configure-skip-toolchain-checks.patch b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools/0001-configure-skip-toolchain-checks.patch index 32a88b2..0c89152 100644 --- a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools/0001-configure-skip-toolchain-checks.patch +++ b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools/0001-configure-skip-toolchain-checks.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 53f8a8dffa571de99b50f1a7b757cfd7d8c24d21 Mon Sep 17 00:00:00 2001 | 1 | From 9c9dce2e5f04de65b7b00321f96fff6071546ea1 Mon Sep 17 00:00:00 2001 |
2 | From: Naveen Saini <naveen.kumar.saini@intel.com> | 2 | From: Naveen Saini <naveen.kumar.saini@intel.com> |
3 | Date: Mon, 17 Oct 2022 15:44:16 +0800 | 3 | Date: Mon, 17 Oct 2022 15:44:16 +0800 |
4 | Subject: [PATCH 1/4] configure: skip toolchain checks | 4 | Subject: [PATCH] configure: skip toolchain checks |
5 | 5 | ||
6 | Current logic fetch full command line along with the tool. i.e | 6 | Current logic fetch full command line along with the tool. i.e |
7 | gcc -m64 -march=skylake -mtune=generic ... | 7 | gcc -m64 -march=skylake -mtune=generic ... |
@@ -14,17 +14,18 @@ environment too. | |||
14 | Upstream-Status: Inappropriate | 14 | Upstream-Status: Inappropriate |
15 | 15 | ||
16 | Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> | 16 | Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> |
17 | |||
17 | --- | 18 | --- |
18 | configure | 12 ++++++------ | 19 | configure | 12 ++++++------ |
19 | 1 file changed, 6 insertions(+), 6 deletions(-) | 20 | 1 file changed, 6 insertions(+), 6 deletions(-) |
20 | 21 | ||
21 | diff --git a/configure b/configure | 22 | diff --git a/configure b/configure |
22 | index 70fdfdf..48d1ea5 100755 | 23 | index b4e824f..10618fc 100755 |
23 | --- a/configure | 24 | --- a/configure |
24 | +++ b/configure | 25 | +++ b/configure |
25 | @@ -38,12 +38,12 @@ check_toolchain() | 26 | @@ -69,12 +69,12 @@ check_toolchain() |
26 | : ${EMACS=emacs} | 27 | CLANG=$(find_tool clang "$CLANG") |
27 | : ${ARCH_INCLUDES=} | 28 | LLC=$(find_tool llc "$LLC") |
28 | 29 | ||
29 | - for TOOL in $PKG_CONFIG $CC $LD $OBJCOPY $CLANG $LLC $M4; do | 30 | - for TOOL in $PKG_CONFIG $CC $LD $OBJCOPY $CLANG $LLC $M4; do |
30 | - if [ ! $(command -v ${TOOL} 2>/dev/null) ]; then | 31 | - if [ ! $(command -v ${TOOL} 2>/dev/null) ]; then |
@@ -40,7 +41,4 @@ index 70fdfdf..48d1ea5 100755 | |||
40 | + #done | 41 | + #done |
41 | 42 | ||
42 | clang_version=$($CLANG --version | grep -Po '(?<=clang version )[[:digit:]]+') | 43 | clang_version=$($CLANG --version | grep -Po '(?<=clang version )[[:digit:]]+') |
43 | echo "Found clang binary '$CLANG' with version $clang_version (from '$($CLANG --version | head -n 1)')" | 44 | if [ "$?" -ne "0" ]; then |
44 | -- | ||
45 | 2.25.1 | ||
46 | |||
diff --git a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.10.bb index 7cd49a0..bd3182d 100644 --- a/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.8.bb +++ b/dynamic-layers/clang-layer/recipes-support/xdp-tools/xdp-tools_1.2.10.bb | |||
@@ -15,7 +15,7 @@ SRC_URI = "git://github.com/xdp-project/xdp-tools.git;branch=v1.2;protocol=https | |||
15 | file://0004-Makefile-fix-libxdp.pc-error.patch \ | 15 | file://0004-Makefile-fix-libxdp.pc-error.patch \ |
16 | " | 16 | " |
17 | 17 | ||
18 | SRCREV = "d4ff1f9bcf8b03556b625ab6e16958598482e861" | 18 | SRCREV = "57a139f9bf6ef644f9c1deb4f7df4bb4c76d6179" |
19 | 19 | ||
20 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
21 | 21 | ||