Does the platform provide and supports the Boehm's GC library?

Property definitions

nitc $ Platform :: supports_libgc
	# Does the platform provide and supports the Boehm's GC library?
	fun supports_libgc: Bool do return true
src/platform/platform.nit:116,2--117,40

nitc $ AndroidPlatform :: supports_libgc
	redef fun supports_libgc do return true
src/platform/android.nit:39,2--40

nitc $ EmscriptenPlatform :: supports_libgc
	redef fun supports_libgc do return false
src/platform/emscripten.nit:36,2--41

nitc $ IOSPlatform :: supports_libgc
	redef fun supports_libgc do return true
src/platform/ios.nit:35,2--40