diff options
author | Patrick Quist <partouf@gmail.com> | 2024-05-01 03:09:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 03:09:43 +0200 |
commit | 1639d0a29a587de9f5ea15dd79614be864c4329b (patch) | |
tree | 2600c126e5ad6160f88cc756073aaa3e2613bf1a /lib/compilers | |
parent | 04f3bd7ce7a9c5e71ef55ceb002cc38022649505 (diff) | |
download | compiler-explorer-1639d0a29a587de9f5ea15dd79614be864c4329b.tar.gz compiler-explorer-1639d0a29a587de9f5ea15dd79614be864c4329b.zip |
fix dex2oat profile issue
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/dex2oat.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/compilers/dex2oat.ts b/lib/compilers/dex2oat.ts index 597d4fa01..5ec489473 100644 --- a/lib/compilers/dex2oat.ts +++ b/lib/compilers/dex2oat.ts @@ -190,9 +190,6 @@ export class Dex2OatCompiler extends BaseCompiler { } let tmpDir = d8DirPath; - if (this.sandboxType === 'nsjail') { - tmpDir = '/app'; - } const profileAndResult = await this.generateProfile(inputFilename, tmpDir, dexFile); if (profileAndResult && profileAndResult.result.code !== 0) { |