Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compilers: drop support for GCC 4.9, 5 and 6 #18127

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
MikeMcQuaid marked this conversation as resolved.
Show resolved Hide resolved
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.