- 12 Apr, 2022 1 commit
-
-
Emmanuel Garcia authored
-
- 08 Apr, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 05 Apr, 2022 1 commit
-
-
Jenn Magder authored
-
- 31 Mar, 2022 1 commit
-
-
Michael Goderbauer authored
-
- 30 Mar, 2022 1 commit
-
-
Ben Konyi authored
-
- 28 Mar, 2022 1 commit
-
-
Christopher Fujino authored
* warn when doctor takes long
-
- 22 Mar, 2022 1 commit
-
-
Chris Bracken authored
Previously, https://github.com/flutter/flutter/pull/100271 enabled building universal macOS binaries by default, but included a bug causing the arm64 App.framework to be built such that the TEXT section containing the app instructions built by gen_snapshot incorrectly contained x86_64 instructions rather than arm64 instructions. When building macOS (and iOS) apps, Flutter builds them in three components: * The Runner application: built by Xcode * The bundled App.framework: built from assembly code generated by gen_snapshot from the application's Dart sources. * The bundled FlutterMacOS.framework: built as part of the engine build and packaged by copying the distributed binary framework from our artifacts cache. Building App.framework consists of the following steps: * For each architecture, invoke gen_snapshot to generate architecture-specific assembly code, which is then built to object code and linked into an architecture-specific App.framework. * Use the `lipo` tool to generate a universal binary that includes both x86_64 and arm64 architectures. Previously, we were building architecture specific App.framework binaries. However, for all architectures we were (mistakenly) invoking the general `gen_snapshot` tool (which emitted x64 instructions, and which is now deprecated) instead of the architecture-specific `gen_snapshot_x86` and `gen_snapshot_arm64` builds which emit instructions for the correct architecture. This change introduces a small refactoring, which is to split the `getNameForDarwinArch` function into two functions: * `getDartNameForDarwinArch`: the name for the specified architecture as used in the Dart SDK, for example as the suffix of `gen_snapshot`. * `getNameForDarwinArch`: the name for the specified architecture as used in Apple tools, for example as an argument to `lipo`. For consistency, and to match developer expectations on Darwin platforms, this is also the name used in Flutter's build outputs. Issue: https://github.com/flutter/flutter/issues/100348
-
- 02 Mar, 2022 1 commit
-
-
Jenn Magder authored
-
- 22 Feb, 2022 1 commit
-
-
Tomasz Gucio authored
-
- 19 Feb, 2022 1 commit
-
-
Zachary Anderson authored
-
- 18 Feb, 2022 2 commits
-
-
Ben Konyi authored
- 02 Feb, 2022 1 commit
-
-
Jenn Magder authored
-
- 26 Jan, 2022 1 commit
-
-
Christopher Fujino authored
-
- 13 Jan, 2022 1 commit
-
-
Spt authored
-
- 10 Jan, 2022 1 commit
-
-
Zachary Anderson authored
-
- 06 Jan, 2022 1 commit
-
-
crisboarna authored
-
- 15 Dec, 2021 1 commit
-
-
Emmanuel Garcia authored
-
- 09 Dec, 2021 1 commit
-
-
Ian Hickson authored
-
- 01 Dec, 2021 1 commit
-
-
Chris Wong authored
-
- 11 Nov, 2021 2 commits
-
-
Kenzie (Schmoll) Davisson authored
* Add DevTools version to `flutter --version` output. * review comments * fix test * add explanatory comment * dummy commit to kick bots Co-authored-by:
Christopher Fujino <christopherfujino@gmail.com>
-
Greg Spencer authored
-
- 04 Nov, 2021 1 commit
-
-
Jenn Magder authored
-
- 02 Nov, 2021 1 commit
-
-
Jenn Magder authored
-
- 21 Oct, 2021 2 commits
-
- 20 Oct, 2021 1 commit
-
-
Chris Yang authored
-
- 15 Oct, 2021 1 commit
-
-
Ian Hickson authored
-
- 13 Oct, 2021 2 commits
-
- 08 Oct, 2021 3 commits
-
-
Ian Hickson authored
-
Zachary Anderson authored
This reverts commit 5fd259be.
-
Ian Hickson authored
-
- 07 Oct, 2021 3 commits
-
-
Ian Hickson authored
-
Mouad Debbar authored
This reverts commit cb378edc.
-
Ian Hickson authored
-
- 01 Oct, 2021 2 commits
-
-
Ian Hickson authored
-
Christopher Fujino authored
-
- 30 Sep, 2021 1 commit
-
-
Greg Spencer authored
This modifies the flutter update-packages and flutter update-packages --force-upgrade commands so that the many invocations of "dart pub get" in each repo project run in parallel instead of in series.
-
- 25 Sep, 2021 1 commit
-
-
Christopher Fujino authored
-