-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/cpp20
- Loading branch information
Showing
5,670 changed files
with
621,139 additions
and
384,884 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tasks: | ||
# cmake bug see https://github.com/gitpod-io/workspace-images/issues/1020 | ||
- init: sudo apt install cmake -y && mkdir -p build && cd build && cmake -G Ninja .. && cmake --build . |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Subject: [PATCH] fix gcc build | ||
--- | ||
Index: v8/include/v8config.h | ||
IDEA additional info: | ||
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | ||
<+>UTF-8 | ||
=================================================================== | ||
diff --git a/v8/include/v8config.h b/v8/include/v8config.h | ||
--- a/v8/include/v8config.h (revision 8a773a0c4053aac9a3eb3f7bbd0c54b158f0bf73) | ||
+++ b/v8/include/v8config.h (revision ad265bb8c8fb5a06b81cb4168f39f44f1c519d09) | ||
@@ -402,7 +402,7 @@ | ||
// always_inline is available in gcc 4.0 but not very reliable until 4.4. | ||
// Works around "sorry, unimplemented: inlining failed" build errors with | ||
// older compilers. | ||
-# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE 1 | ||
+# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE 0 | ||
# define V8_HAS_ATTRIBUTE_NOINLINE 1 | ||
# define V8_HAS_ATTRIBUTE_UNUSED 1 | ||
# define V8_HAS_ATTRIBUTE_VISIBILITY 1 |
Oops, something went wrong.