From c3237a8d3828648267c8450b1f7d8ed6af531b30 Mon Sep 17 00:00:00 2001 From: hacker1024 Date: Mon, 23 Oct 2023 02:57:39 +1100 Subject: [PATCH] flutter: Remove JIT explanation Turns out it was a patch that was causing the strange behaviour. --- pkgs/development/compilers/flutter/flutter-tools.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/compilers/flutter/flutter-tools.nix b/pkgs/development/compilers/flutter/flutter-tools.nix index 23864cd0f245..bf673400b765 100644 --- a/pkgs/development/compilers/flutter/flutter-tools.nix +++ b/pkgs/development/compilers/flutter/flutter-tools.nix @@ -13,11 +13,6 @@ buildDartApplication.override { inherit dart; } rec { pname = "flutter-tools"; inherit version; - - # The SDK normally uses a JIT snapshot, so we do as well. - # Previously, we used a kernel snapshot - but this was found to cause - # extremely strange behaviour at runtime (observed in `flutter precache`), - # where certain functions would not execute properly. dartOutputType = "jit-snapshot"; src = flutterSrc;