aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dotnet.ts
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2023-03-12 11:29:57 -0500
committerGitHub <noreply@github.com>2023-03-12 11:29:57 -0500
commit3461db6c19375ceca1b735a1dbf0502e42c29d62 (patch)
tree0b50758000ce11cc23d9b3e4d8e232a7bc3db815 /lib/compilers/dotnet.ts
parent1151b9034ee7bb9dd773445179c858d9ae0540a4 (diff)
downloadcompiler-explorer-3461db6c19375ceca1b735a1dbf0502e42c29d62.tar.gz
compiler-explorer-3461db6c19375ceca1b735a1dbf0502e42c29d62.zip
Bump all minor versions - npm update; also bump webpack version speculatively... (#4851)gh-6756
also npm lint and format to make sure any changes turn up.
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r--lib/compilers/dotnet.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts
index 1df152b9b..c7fb976fa 100644
--- a/lib/compilers/dotnet.ts
+++ b/lib/compilers/dotnet.ts
@@ -314,11 +314,15 @@ class DotNetCompiler extends BaseCompiler {
await this.ensureCrossgen2Version(execOptions);
const crossgen2Options = [
- '-r', path.join(bclPath, '/'),
+ '-r',
+ path.join(bclPath, '/'),
dllPath,
- '-o', 'CompilerExplorer.r2r.dll',
- '--codegenopt', (this.sdkMajorVersion < 7 ? 'NgenDisasm=*' : 'JitDisasm=*'),
- '--codegenopt', (this.sdkMajorVersion < 8 ? 'JitDiffableDasm=1' : 'JitDisasmDiffable=1'),
+ '-o',
+ 'CompilerExplorer.r2r.dll',
+ '--codegenopt',
+ this.sdkMajorVersion < 7 ? 'NgenDisasm=*' : 'JitDisasm=*',
+ '--codegenopt',
+ this.sdkMajorVersion < 8 ? 'JitDiffableDasm=1' : 'JitDisasmDiffable=1',
'--inputbubble',
'--compilebubblegenerics',
].concat(options);