Remove GCC 12

This commit is contained in:
Steffen Lange 2025-07-25 22:46:54 +02:00
parent cbb0e8c616
commit a945d8ca44

View file

@ -1,15 +0,0 @@
<?php
class GCC12 extends PatchBase {
function __construct() {
parent::__construct('Free Software Foundation', 'GNU Compiler Collection', 'https://gcc.gnu.org/');
$this->patch->setBranch('12');
}
function check() : bool {
if ($this->fetch('https://gcc.gnu.org/'))
return $this->parse('/<span class="version"><a href="gcc-12\/">GCC ([\d\.]+)/');
return false;
}
}
?>