summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-11-05 20:05:08 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-11-07 15:12:00 +0000
commit520dd8452355c8ca0f71d7f8f7f7e8b76acafba9 (patch)
treecc8301029be989c0ca5de508401c1eccc1e7c8ed /meta/recipes-devtools/strace/strace
parenteaa7b2464f838a166a6f09d6bd6701d5d05b7009 (diff)
downloadpoky-520dd8452355c8ca0f71d7f8f7f7e8b76acafba9.tar.gz
strace: Fix ptest build
include stdint.h since the test uses uintptr_t C99 type (From OE-Core rev: b0791cfeeed3d4346ea5c9285f09b0a532c58bf8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace')
-rw-r--r--meta/recipes-devtools/strace/strace/uintptr_t.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace/uintptr_t.patch b/meta/recipes-devtools/strace/strace/uintptr_t.patch
new file mode 100644
index 0000000000..6d3dd6fb98
--- /dev/null
+++ b/meta/recipes-devtools/strace/strace/uintptr_t.patch
@@ -0,0 +1,17 @@
1include stdint.h for getting uintptr_t definition
2
3fixes do_compile_ptest_base
4tests/fanotify_mark.c:191:23: error: 'uintptr_t' undeclared (first use in this function); did you mean 'intptr_t'?
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8--- a/tests/fanotify_mark.c
9+++ b/tests/fanotify_mark.c
10@@ -18,6 +18,7 @@
11
12 # include <limits.h>
13 # include <stdio.h>
14+# include <stdint.h>
15 # include <unistd.h>
16 # include <sys/fanotify.h>
17