-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Spring to support ARM (#51773)
* patch build.sh * bump build number * Update recipes/spring/build.sh Drop newlines * apply review comments * add run_exports * add linux-aarch64 build --------- Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com> Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com>
- Loading branch information
1 parent
1a8efcf
commit 3e97b74
Showing
3 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/src/libbsc/bsc.h b/src/libbsc/bsc.h | ||
index 25230dc..caca189 100644 | ||
--- a/src/libbsc/bsc.h | ||
+++ b/src/libbsc/bsc.h | ||
@@ -48,6 +48,7 @@ preprocessor macro LIBBSC_SORT_TRANSFORM_SUPPORT at compile time. | ||
#ifndef SPRING_LIBBSC_BSC_H_ | ||
#define SPRING_LIBBSC_BSC_H_ | ||
|
||
+#include <cstdint> | ||
#include "params.h" | ||
|
||
namespace spring { | ||
diff --git a/src/util.h b/src/util.h | ||
index 30bad68..a72a0b6 100644 | ||
--- a/src/util.h | ||
+++ b/src/util.h | ||
@@ -17,6 +17,7 @@ limitations under the License. | ||
|
||
#include <fstream> | ||
#include <string> | ||
+#include <cstdint> | ||
|
||
namespace spring { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters