aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/assembly.ts
diff options
context:
space:
mode:
authorpartouf <partouf@gmail.com>2023-09-30 18:50:52 +0200
committerpartouf <partouf@gmail.com>2023-09-30 18:50:52 +0200
commit082ff8c2cfe1e42067f18223dec398f63bf14eb9 (patch)
treee2bc0053ce0011a12129d21506be93192d966df8 /lib/compilers/assembly.ts
parent0d7357a657a9a3fd5ffe9f1bf2c1eb4d8bb9baf7 (diff)
downloadcompiler-explorer-gh-8883.tar.gz
compiler-explorer-gh-8883.zip
working executiongh-8883
Diffstat (limited to 'lib/compilers/assembly.ts')
-rw-r--r--lib/compilers/assembly.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compilers/assembly.ts b/lib/compilers/assembly.ts
index ff08ffee3..0ef165840 100644
--- a/lib/compilers/assembly.ts
+++ b/lib/compilers/assembly.ts
@@ -157,10 +157,11 @@ export class AssemblyCompiler extends BaseCompiler {
),
);
+ const downloads = await buildEnvironment;
+
const execOptions = this.getDefaultExecOptions();
- execOptions.ldPath = this.getSharedLibraryPathsAsLdLibraryPaths(key.libraries);
+ execOptions.ldPath = this.getSharedLibraryPathsAsLdLibraryPaths(key.libraries, dirPath);
- const downloads = await buildEnvironment;
const result = await this.buildExecutable(key.compiler.exe, compilerArguments, inputFilename, execOptions);
const fullResult: BuildResult = {