From 97ef3a2bd50b76d570fdcb8b1a5daf7977ec3671 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sun, 9 May 2021 14:45:08 +0200 Subject: [PATCH] Add GCC 11 --- modules/GCC11.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/GCC11.php diff --git a/modules/GCC11.php b/modules/GCC11.php new file mode 100644 index 0000000..7b316b3 --- /dev/null +++ b/modules/GCC11.php @@ -0,0 +1,15 @@ +patch->setBranch('11'); + } + function check() : bool { + if ($this->fetch('https://gcc.gnu.org/')) + return $this->parse('/GCC ([\d\.]+)/'); + return false; + } +} + +?>