CCompilerConfig constructor

CCompilerConfig({
  1. required Uri archiver,
  2. required Uri compiler,
  3. required Uri linker,
  4. WindowsCCompilerConfig? windows,
})

Constructs a new CCompilerConfig based on the given toolchain tools.

Implementation

CCompilerConfig({
  required this.archiver,
  required this.compiler,
  required this.linker,
  WindowsCCompilerConfig? windows,
}) : _windows = windows;