aboutsummaryrefslogtreecommitdiff
path: root/rakelib/gcc.rake
diff options
context:
space:
mode:
Diffstat (limited to 'rakelib/gcc.rake')
-rw-r--r--rakelib/gcc.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/rakelib/gcc.rake b/rakelib/gcc.rake
index 39b4442..2b8bbfb 100644
--- a/rakelib/gcc.rake
+++ b/rakelib/gcc.rake
@@ -10,7 +10,7 @@ require 'pathname'
def gcc_verbose(gcc_binary)
read, write = IO.pipe
- sh({'LANG' => 'C'}, gcc_binary, '--verbose', err: write)
+ sh({'LC_ALL' => 'C'}, gcc_binary, '--verbose', err: write)
write.close
output = read.read
read.close
@@ -60,10 +60,10 @@ end
namespace :gcc do
# Dependencies.
- GCC_VERSION = "15.2.0"
+ GCC_VERSION = "15.3.0"
HOST_GCC = 'build/host/gcc'
HOST_INSTALL = 'build/host/install'
- GCC_PATCH = 'https://raw.githubusercontent.com/Homebrew/formula-patches/575ffcaed6d3112916fed77d271dd3799a7255c4/gcc/gcc-15.1.0.diff'
+ GCC_PATCH = 'https://raw.githubusercontent.com/Homebrew/homebrew-core/refs/heads/main/Patches/gcc/gcc-15.3.0.diff'
directory HOST_GCC
directory HOST_INSTALL