forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ports/bdwgc: Update bdwgc to version 8.2.2
- Loading branch information
Showing
10 changed files
with
105 additions
and
215 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
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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Ali Mohammad Pur <ali.mpfard@gmail.com> | ||
Date: Thu, 24 Feb 2022 01:50:40 +0330 | ||
Date: Mon, 27 Mar 2023 20:04:41 +1100 | ||
Subject: [PATCH] Error on unknown arch | ||
|
||
--- | ||
include/private/gcconfig.h | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/include/private/gcconfig.h b/include/private/gcconfig.h | ||
index e9d1d42..8e48b66 100644 | ||
index 2126a12..7b8b86f 100644 | ||
--- a/include/private/gcconfig.h | ||
+++ b/include/private/gcconfig.h | ||
@@ -358,6 +358,8 @@ EXTERN_C_BEGIN | ||
@@ -344,6 +344,8 @@ EXTERN_C_BEGIN | ||
# define I386 | ||
# elif defined(__x86_64__) | ||
# define X86_64 | ||
+# else | ||
+# error "Invalid arch for serenity" | ||
# endif | ||
#endif | ||
# if defined(__HAIKU__) && (defined(__amd64__) || defined(__x86_64__)) | ||
# if (defined(__BEOS__) || defined(__HAIKU__)) && defined(_X86_) |
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
Oops, something went wrong.