1if not ("PowerPC" in config.root.targets): 2 # We need support for PowerPC. 3 config.unsupported = True 4elif not ("powerpc" in config.root.host_triple): 5 # We need to be running on an PPC host. 6 config.unsupported = True 7
1if not ("PowerPC" in config.root.targets): 2 # We need support for PowerPC. 3 config.unsupported = True 4elif not ("powerpc" in config.root.host_triple): 5 # We need to be running on an PPC host. 6 config.unsupported = True 7