Skip to content

Commit 3285734

Browse files
author
Nathan Ricci
authored
Added IntermediateOutputPath option to MonoAotCompiler task parameters (#1888)
1 parent 23d1150 commit 3285734

File tree

3 files changed

+3
-70
lines changed

3 files changed

+3
-70
lines changed

src/BenchmarkDotNet/Templates/MonoAOTLLVMCsProj.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
UseLLVM="$USELLVM$"
5858
LLVMPath="$(MicrosoftNetCoreAppRuntimePackDir)\runtimes\$(RuntimeIdentifier)\native"
5959
OutputDir="$(PublishDir)"
60-
UseAotDataFile="false">
60+
UseAotDataFile="false"
61+
IntermediateOutputPath="$(IntermediateOutputPath)">
6162
<Output TaskParameter="CompiledAssemblies" ItemName="BundleAssemblies" />
6263
</MonoAOTCompiler>
6364

src/BenchmarkDotNet/Toolchains/MonoAotLLVM/MonoAotLLVMBuilder.cs

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/BenchmarkDotNet/Toolchains/MonoAotLLVM/MonoAotLLVMToolChain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static IToolchain From(NetCoreAppSettings netCoreAppSettings)
1717
netCoreAppSettings.CustomRuntimePack,
1818
netCoreAppSettings.AOTCompilerPath,
1919
netCoreAppSettings.AOTCompilerMode),
20-
new MonoAotLLVMBuilder(netCoreAppSettings.TargetFrameworkMoniker,
20+
new DotNetCliBuilder(netCoreAppSettings.TargetFrameworkMoniker,
2121
netCoreAppSettings.CustomDotNetCliPath,
2222
netCoreAppSettings.Timeout),
2323
new Executor());

0 commit comments

Comments
 (0)