def getRoot(config):
    if not config.parent:
        return config
    return getRoot(config.parent)

if not getRoot(config).enable_posix_runtime:
    config.unsupported = True