nitc :: AndroidPlatform :: defaultinit
nitc $ AndroidPlatform :: SELF
Type of this instance, automatically specialized in every classnitc $ AndroidPlatform :: name
Simple lower-case name of the platformnitc $ AndroidPlatform :: supports_libgc
Does the platform provide and supports the Boehm's GC library?nitc $ AndroidPlatform :: supports_libunwind
Does the platform provide and support the libraryunwind
?
nitc $ AndroidPlatform :: supports_linker_script
Does the platform accepts linker scripts?nitc $ AndroidPlatform :: toolchain
The specific tool-chain associated to the platformcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: AndroidPlatform :: defaultinit
nitc :: Platform :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).nitc :: Platform :: supports_libgc
Does the platform provide and supports the Boehm's GC library?nitc :: Platform :: supports_libunwind
Does the platform provide and support the libraryunwind
?
nitc :: Platform :: supports_linker_script
Does the platform accepts linker scripts?
class AndroidPlatform
super Platform
redef fun name do return "android"
redef fun supports_libgc do return true
redef fun supports_libunwind do return false
redef fun supports_linker_script do return false
redef fun toolchain(toolcontext, compiler) do return new AndroidToolchain(toolcontext, compiler)
end
src/platform/android.nit:34,1--46,3