diff options
author | Matt Godbolt <matt@godbolt.org> | 2023-09-03 12:49:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-03 12:49:28 -0500 |
commit | ef8e591cb06ad80ae21a25655004c005c5e0eb8b (patch) | |
tree | 484b201cdf46e27a6525b40674269eb9420251c5 /lib/compilers/clang.ts | |
parent | d6c0c1b7ed15604e8b5f8fe078c153612c6096d9 (diff) | |
parent | d449c08dbc251cf86b0e8d8475206f18fc3915e1 (diff) | |
download | compiler-explorer-ef8e591cb06ad80ae21a25655004c005c5e0eb8b.tar.gz compiler-explorer-ef8e591cb06ad80ae21a25655004c005c5e0eb8b.zip |
Merge branch 'main' into edg-support
Diffstat (limited to 'lib/compilers/clang.ts')
-rw-r--r-- | lib/compilers/clang.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/clang.ts b/lib/compilers/clang.ts index c9fdcf70f..be047c9ef 100644 --- a/lib/compilers/clang.ts +++ b/lib/compilers/clang.ts @@ -101,6 +101,7 @@ export class ClangCompiler extends BaseCompiler { if (this.asanSymbolizerPath) { executeParameters.env = { ASAN_SYMBOLIZER_PATH: this.asanSymbolizerPath, + MSAN_SYMBOLIZER_PATH: this.asanSymbolizerPath, ...executeParameters.env, }; } |