Skip to content

Commit

Permalink
fix: Adjust response file for aot-instances
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed May 18, 2023
1 parent 4464709 commit 997cf92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Uno.Wasm.Packager/packager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,9 @@ int Run (string[] args) {
ninja.WriteLine ($" command = {aot_cross_prefix} $cross --debug {profiler_aot_args} {aot_compiler_options} --aot=$aot_args,$aot_base_args,depfile=$depfile,llvm-outfile=$outfile $src_file");
ninja.WriteLine (" description = [AOT] $src_file -> $outfile");
ninja.WriteLine ("rule aot-instances");
ninja.WriteLine ($" command = {aot_cross_prefix} $cross --debug {profiler_aot_args} {aot_compiler_options} --aot=$aot_base_args,llvm-outfile=$outfile,dedup-include=$dedup_image $src_files");
ninja.WriteLine ($" rspfile = $builddir/aot-instances.rsp");
ninja.WriteLine ($" rspfile_content = --debug {profiler_aot_args} {aot_compiler_options} --aot=$aot_base_args,llvm-outfile=$outfile,dedup-include=$dedup_image $src_files");
ninja.WriteLine ($" command = {aot_cross_prefix} $cross @$builddir/aot-instances.rsp");
ninja.WriteLine (" description = [AOT-INSTANCES] $outfile");
ninja.WriteLine ("rule mkdir");

Expand Down

0 comments on commit 997cf92

Please sign in to comment.