Skip to content

Commit

Permalink
Merge pull request #18127 from cho-m/remove-support-disabled-gcc
Browse files Browse the repository at this point in the history
compilers: drop support for GCC 4.9, 5 and 6
  • Loading branch information
MikeMcQuaid authored Sep 25, 2024
2 parents 4deb9df + 7dac30a commit 57ff7b0
Show file tree
Hide file tree
Showing 17 changed files with 2 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Library/Homebrew/compilers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# frozen_string_literal: true

module CompilerConstants
GNU_GCC_VERSIONS = %w[4.9 5 6 7 8 9 10 11 12 13 14].freeze
GNU_GCC_REGEXP = /^gcc-(4\.9|[5-9]|10|11|12|13|14)$/
GNU_GCC_VERSIONS = %w[7 8 9 10 11 12 13 14].freeze
GNU_GCC_REGEXP = /^gcc-(#{GNU_GCC_VERSIONS.join("|")})$/
COMPILER_SYMBOL_MAP = {
"gcc" => :gcc,
"clang" => :clang,
Expand Down
1 change: 0 additions & 1 deletion Library/Homebrew/shims/linux/super/gcc-4.2

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/linux/super/gcc-4.9

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/linux/super/gcc-5

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/linux/super/gcc-6

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/linux/super/llvm-gcc-4.2

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/mac/super/gcc-4.2

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/mac/super/gcc-4.9

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/mac/super/gcc-5

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/mac/super/gcc-6

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/mac/super/llvm-gcc-4.2

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/super/gcc-4.9

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/super/gcc-5

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/super/gcc-6

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion Library/Homebrew/shims/super/llvm-gcc-4.2

This file was deleted.

0 comments on commit 57ff7b0

Please sign in to comment.