Example #1
0
 public static LLVMLinkTool Construct(Job job, LLVM toolchain, ILinkInput input) => new LLVMLinkTool(job, input);
Example #2
0
 private LLVMLinkTool(Job job, ILinkInput input)
 {
     _job   = job;
     _input = input;
 }
Example #3
0
 public override IExecutableTool BuildLinkJobTool(Job job, ILinkInput input) =>
 LLVMLinkTool.Construct(job, this, input);
Example #4
0
 public static MonCLinkTool Construct(Job job, MonC toolchain, ILinkInput input) => new MonCLinkTool(job, input);
Example #5
0
 private MonCLinkTool(Job job, ILinkInput input)
 {
     _job   = job;
     _input = input;
 }
Example #6
0
 public virtual IExecutableTool BuildLinkJobTool(Job job, ILinkInput input) => throw new NotImplementedException();