Skip to content

Commit

Permalink
Remove inline option in odex file
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev4Mod authored Dec 27, 2024
1 parent 7b62462 commit ad46397
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dex2oat/src/main/cpp/dex2oat.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ int main(int argc, char **argv) {
const char *new_argv[argc + 2];
for (int i = 0; i < argc; i++) new_argv[i] = argv[i];
new_argv[argc] = "--inline-max-code-units=0";
new_argv[argc + 1] = NULL;
new_argv[argc + 1] = "--avoid-storing-invocation";
new_argv[argc + 2] = NULL;

if (getenv("LD_LIBRARY_PATH") == NULL) {
#if defined(__LP64__)
Expand Down

0 comments on commit ad46397

Please sign in to comment.