A ToolChain that can handle additional platforms simply by configuring the NativeBinary.
Type | Name and description |
---|---|
void |
eachPlatform(Action<? super GccPlatformToolChain> action) Adds an action that can fine-tune the tool configuration for each platform supported by this tool chain. |
List<File> |
getPath() The paths setting required for executing the tool chain. |
void |
path(Object... pathEntries) Append an entry or entries to the tool chain path. |
void |
target(String platformName) Add support for target platform specified by name. |
void |
target(String platformName, Action<? super GccPlatformToolChain> action) Add configuration for a target platform specified by name with additional configuration action. |
Methods inherited from class | Name |
---|---|
interface NativeToolChain |
getDisplayName |
interface Named |
getName |
Adds an action that can fine-tune the tool configuration for each platform supported by this tool chain.
The paths setting required for executing the tool chain. These are used to locate tools for this tool chain, and are prepended to the system PATH when executing these tools.
Append an entry or entries to the tool chain path.
pathEntries
- The path values to append. These are evaluated as per Project.filesAdd support for target platform specified by name.
Add configuration for a target platform specified by name with additional configuration action.