Class LlvmTarget
java.lang.Object
org.ek9lang.compiler.backend.llvm.LlvmTarget
- All Implemented Interfaces:
Target
Target for LLVM code output.
i.e. this Target would produce LLVM Code that can be
converted to an executable by the llvm software.
A check is undertaken to see if the 'clang' executable with the right version can be located and executed.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe Target Architecture for the output.boolean
Is this target actually supported.
-
Constructor Details
-
LlvmTarget
public LlvmTarget()
-
-
Method Details
-
getArchitecture
Description copied from interface:Target
The Target Architecture for the output.- Specified by:
getArchitecture
in interfaceTarget
- Returns:
- One of the valid target architectures.
-
isSupported
public boolean isSupported()Description copied from interface:Target
Is this target actually supported. While the developer may have specified a valid TargetArchitecture, the necessary components may not be available. So for example, if the developer had specified LLVM as the target output (and hence some form of binary as a result), it will be necessary for that developer to have llvm installed (at the right level) and to be accessible.- Specified by:
isSupported
in interfaceTarget
- Returns:
- true if supported and output can be generated, false otherwise.
-