From 4ad6052aa2816f8296e62569272e99fc0d2fd3c1 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 3 Jul 2026 08:53:03 +0200 Subject: Merge variable_expression and named_type_expression --- rakelib/gcc.rake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rakelib/gcc.rake') 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 -- cgit v1.2.3