use of org.gradle.nativeplatform.toolchain.internal.DefaultCommandLineToolInvocationWorker in project gradle by gradle.
the class GccPlatformToolProvider method commandLineTool.
private CommandLineToolInvocationWorker commandLineTool(GccCommandLineToolConfigurationInternal tool) {
ToolType key = tool.getToolType();
String exeName = tool.getExecutable();
return new DefaultCommandLineToolInvocationWorker(key.getToolName(), toolSearchPath.locate(key, exeName).getTool(), execActionFactory);
}
Aggregations