CCompilerConfig constructor

CCompilerConfig({
  1. Uri? archiver,
  2. Uri? compiler,
  3. Uri? linker,
  4. Uri? envScript,
  5. List<String>? envScriptArgs,
})

Constructs a new CCompilerConfig based on the given toolchain tools.

Implementation

CCompilerConfig({
  this.archiver,
  this.compiler,
  this.linker,
  this.envScript,
  this.envScriptArgs,
});