Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40d619df authored by Andreas Gampe's avatar Andreas Gampe Committed by android-build-merger
Browse files

Installd: Make extract-only = interpret-only am: bb7a7708

am: 89286a49

* commit '89286a49':
  Installd: Make extract-only = interpret-only
parents eb00ac3d 89286a49
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -826,7 +826,9 @@ static void run_dex2oat(int zip_fd, int oat_fd, int image_fd, const char* input_
        strcpy(dex2oat_compiler_filter_arg, "--compiler-filter=interpret-only");
        have_dex2oat_compiler_filter_flag = true;
    } else if (extract_only) {
        strcpy(dex2oat_compiler_filter_arg, "--compiler-filter=verify-at-runtime");
        // Temporarily make extract-only mean interpret-only, so extracted files will be verified.
        // b/26833007
        strcpy(dex2oat_compiler_filter_arg, "--compiler-filter=interpret-only");
        have_dex2oat_compiler_filter_flag = true;
    } else if (have_dex2oat_compiler_filter_flag) {
        sprintf(dex2oat_compiler_filter_arg, "--compiler-filter=%s", dex2oat_compiler_filter_flag);