public enum TargetCpuType extends Enum<TargetCpuType>
Modifier and Type | Method and Description |
---|---|
abstract com.google.common.collect.ImmutableList<String> |
getAssemblerFlags(NdkCompilerType compiler) |
abstract com.google.common.collect.ImmutableList<String> |
getCompilerFlags(NdkCompilerType compiler) |
abstract com.google.common.collect.ImmutableList<String> |
getLinkerFlags(NdkCompilerType compiler) |
abstract NdkTargetArch |
getTargetArch() |
abstract NdkTargetArchAbi |
getTargetArchAbi() |
abstract NdkToolchain |
getToolchain() |
abstract NdkToolchainTarget |
getToolchainTarget() |
static TargetCpuType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TargetCpuType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TargetCpuType ARM
public static final TargetCpuType ARMV7
public static final TargetCpuType ARM64
public static final TargetCpuType X86
public static final TargetCpuType X86_64
public static final TargetCpuType MIPS
public static TargetCpuType[] values()
for (TargetCpuType c : TargetCpuType.values()) System.out.println(c);
public static TargetCpuType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract NdkTargetArch getTargetArch()
public abstract NdkTargetArchAbi getTargetArchAbi()
public abstract NdkToolchain getToolchain()
public abstract NdkToolchainTarget getToolchainTarget()
public abstract com.google.common.collect.ImmutableList<String> getAssemblerFlags(NdkCompilerType compiler)
public abstract com.google.common.collect.ImmutableList<String> getCompilerFlags(NdkCompilerType compiler)
public abstract com.google.common.collect.ImmutableList<String> getLinkerFlags(NdkCompilerType compiler)