blob: 6c0eed1e15c7318b0568864c25ceaf9801037d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
https://github.com/StanfordLegion/legion/pull/1461
From 6165e09b8d990bd5c6baa7b7a487b6757d89d3e3 Mon Sep 17 00:00:00 2001
From: Sam James <sam@gentoo.org>
Date: Tue, 18 Apr 2023 06:54:38 +0100
Subject: [PATCH] Fix build with GCC 13
GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some
are no longer transitively included.
See https://gnu.org/software/gcc/gcc-13/porting_to.html.
Bug: https://bugs.gentoo.org/895564
--- a/runtime/realm/utils.h
+++ b/runtime/realm/utils.h
@@ -27,6 +27,7 @@
#include <vector>
#include <map>
#include <cassert>
+#include <cstdint>
#include <sstream>
namespace Realm {
|