-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial support for >=3.6 firmwares, toolchain v4.x
This updates all libraries in toolchain/base images according to 3.6.0.1865 firmware. Includes patches for glibc 2.35 (to be upstreamed) and for breakpad. Updated crosstool-ng to latest master and regerated crosstool.config using it.
- Loading branch information
Showing
8 changed files
with
210 additions
and
188 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## Toltec Build Toolchain | ||
|
||
This branch contains the Docker image definitions for the `3.x` releases.\ | ||
This branch contains the Docker image definitions for the `4.x` releases.\ | ||
[See the main README file for more information →](https://github.com/toltec-dev/toolchain#readme) |
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,18 @@ | ||
This patch fixes the issue with gcc complainig about following: | ||
error: no matching function for call to ‘max(int, long int)’ | ||
|
||
Ref: https://github.com/pytorch/pytorch/issues/70392#issuecomment-1003488196 | ||
|
||
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc | ||
index b895f6d7..dc70527b 100644 | ||
--- a/src/client/linux/handler/exception_handler.cc | ||
+++ b/src/client/linux/handler/exception_handler.cc | ||
@@ -138,7 +138,7 @@ void InstallAlternateStackLocked() { | ||
// SIGSTKSZ may be too small to prevent the signal handlers from overrunning | ||
// the alternative stack. Ensure that the size of the alternative stack is | ||
// large enough. | ||
- static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); | ||
+ static const unsigned kSigStackSize = std::max(16384L, SIGSTKSZ); | ||
|
||
// Only set an alternative stack if there isn't already one, or if the current | ||
// one is too small. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.