aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/rust.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/rust.ts')
-rw-r--r--lib/compilers/rust.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/rust.ts b/lib/compilers/rust.ts
index bde2109c0..28345e335 100644
--- a/lib/compilers/rust.ts
+++ b/lib/compilers/rust.ts
@@ -58,7 +58,7 @@ export class RustCompiler extends BaseCompiler {
this.compiler.llvmOptArg = ['-C', 'llvm-args=-print-after-all -print-before-all'];
this.compiler.llvmOptModuleScopeArg = ['-C', 'llvm-args=-print-module-scope'];
this.compiler.llvmOptNoDiscardValueNamesArg = isNightly ? ['-Z', 'fewer-names=no'] : [];
- this.linker = this.compilerProps('linker');
+ this.linker = this.compilerProps<string>('linker');
}
override getSharedLibraryPathsAsArguments(libraries, libDownloadPath) {