From fb54604b311b60cf1e374161af880bd60eb37332 Mon Sep 17 00:00:00 2001
From: Justine Tunney <jtunney@gmail.com>
Date: Sat, 27 Jul 2024 08:35:02 -0700
Subject: [PATCH] Upgrade to superconfigure z0.0.48

Our cosmocc binaries are now built with GCC 14.1, using the Cosmo commit
efb3a346086b0b54c923eae7c847c1af5795d4c6 from yesterday.

GCC is now configured using --enable-analyzer so you can use -fanalyzer.
---
 tool/cosmocc/README.md  | 2 +-
 tool/cosmocc/package.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tool/cosmocc/README.md b/tool/cosmocc/README.md
index 3120bc38a..0db871acd 100644
--- a/tool/cosmocc/README.md
+++ b/tool/cosmocc/README.md
@@ -417,7 +417,7 @@ statements instead, so that Cosmopolitan Libc's system constants will
 work as expected. Our modifications to GNU GCC are published under the
 ISC license at <https://github.com/ahgamut/gcc/tree/portcosmo-14.1>. The
 binaries you see here were first published at
-<https://github.com/ahgamut/superconfigure/releases/tag/z0.0.47> which
+<https://github.com/ahgamut/superconfigure/releases/tag/z0.0.48> which
 is regularly updated.
 
 ## Legal
diff --git a/tool/cosmocc/package.sh b/tool/cosmocc/package.sh
index b4bceebad..2ba718252 100755
--- a/tool/cosmocc/package.sh
+++ b/tool/cosmocc/package.sh
@@ -181,10 +181,10 @@ fetch() {
 OLD=$PWD
 cd "$OUTDIR/"
 if [ ! -x bin/x86_64-linux-cosmo-gcc ]; then
-  fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.47/aarch64-gcc.zip
+  fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.48/aarch64-gcc.zip
   unzip aarch64-gcc.zip
   rm -f aarch64-gcc.zip
-  fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.47/x86_64-gcc.zip
+  fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.48/x86_64-gcc.zip
   unzip x86_64-gcc.zip
   rm -f x86_64-gcc.zip
 fi