forked from meta-flutter/flutter_embedded
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix -ggdb debug symbols patch for 3.13. Add linux sysroot for macos patch.
- Loading branch information
Showing
4 changed files
with
46 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From d03cd38f90e0e4cbc4a37cbfeb34c65ed3ddeefe Mon Sep 17 00:00:00 2001 | ||
From: Hannes Winkler <hanneswinkler2000@web.de> | ||
Date: Mon, 27 Mar 2023 12:42:17 +0200 | ||
Subject: [PATCH 1/3] allow downloading linux sysroot on darwin | ||
|
||
--- | ||
build/linux/sysroot_scripts/install-sysroot.py | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py | ||
index d3e7664..6dfbe42 100755 | ||
--- a/build/linux/sysroot_scripts/install-sysroot.py | ||
+++ b/build/linux/sysroot_scripts/install-sysroot.py | ||
@@ -77,7 +77,7 @@ def main(args): | ||
parser.add_option('--print-hash', | ||
help='Print the hash of the sysroot for the given arch.') | ||
options, _ = parser.parse_args(args) | ||
- if not sys.platform.startswith('linux'): | ||
+ if not (sys.platform.startswith('linux') or sys.platform.startswith('darwin')): | ||
return 0 | ||
|
||
if options.print_hash: | ||
-- | ||
2.39.2 | ||
|
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