summarylogtreecommitdiffstats
path: root/perfetto-gcc10.patch
diff options
context:
space:
mode:
authorAntonio Rojas2020-08-07 10:05:21 +0000
committerAntonio Rojas2020-08-07 10:05:21 +0000
commit961dd12d7fe19e22e6b08edf083fc2f12938518c (patch)
treed3aca1c222660f346c1296c5850384de9e7b24c8 /perfetto-gcc10.patch
downloadaur-electron6.tar.gz
Dropped from [community]
Diffstat (limited to 'perfetto-gcc10.patch')
-rw-r--r--perfetto-gcc10.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/perfetto-gcc10.patch b/perfetto-gcc10.patch
new file mode 100644
index 000000000000..e23c938d0e50
--- /dev/null
+++ b/perfetto-gcc10.patch
@@ -0,0 +1,28 @@
+From 0e7ca0bf9872932322563e70bcf84eb033ffde4f Mon Sep 17 00:00:00 2001
+From: Chisoon Jeong <chisoon.jeong@lge.com>
+Date: Tue, 24 Mar 2020 19:46:20 +0900
+Subject: [PATCH] Add #include <stdint.h> in
+ include/perfetto/base/task_runner.h
+
+Depending on compilation environment, task_runner.h|cc is
+not compiled due to missing stdint.h. This change includes stdint.h in
+task_runner.h to fix this issue.
+
+Change-Id: I6dcfbd4ad62cbd287b8e75e306930ad00731048a
+---
+ include/perfetto/base/task_runner.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/include/perfetto/base/task_runner.h b/include/perfetto/base/task_runner.h
+index cf6040123..040aab2b7 100644
+--- a/include/perfetto/base/task_runner.h
++++ b/include/perfetto/base/task_runner.h
+@@ -17,6 +17,8 @@
+ #ifndef INCLUDE_PERFETTO_BASE_TASK_RUNNER_H_
+ #define INCLUDE_PERFETTO_BASE_TASK_RUNNER_H_
+
++#include <stdint.h>
++
+ #include <functional>
+
+ #include "perfetto/base/export.h"