X-Git-Url: http://nitlanguage.org diff --git a/src/platform.nit b/src/platform.nit index ccb506d..3c5367f 100644 --- a/src/platform.nit +++ b/src/platform.nit @@ -112,4 +112,9 @@ end # Services will be added to this class in other modules. abstract class Platform fun supports_libunwind: Bool do return true + + fun supports_libgc: Bool do return true + + # Does this platform declare its own main function? If so, we won't generate one in Nit. + fun no_main: Bool do return false end