CCompilerConfig class final

The configuration for a C toolchain.

Constructors

CCompilerConfig({Uri? archiver, Uri? compiler, Uri? linker, Uri? envScript, List<String>? envScriptArgs})
Constructs a new CCompilerConfig based on the given toolchain tools.
CCompilerConfig.fromJson(Map<String, Object?> json)
Constructs a CCompilerConfig from the given json.
factory

Properties

archiver Uri?
Path to a native archiver.
latefinal
compiler Uri?
Path to a C compiler.
latefinal
envScript Uri?
Path to script that sets environment variables for compiler, linker, and archiver.
latefinal
envScriptArgs List<String>?
Arguments for envScript.
latefinal
hashCode int
The hash code for this object.
no setteroverride
linker Uri?
Path to a native linker.
latefinal
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
The json representation of this CCompilerConfig.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override