From 3093f0e4677dab4e4724d1470017d0d17921d35a Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Wed, 5 Jun 2024 03:01:59 -0700 Subject: [PATCH] Release Cosmopolitan v3.4.0 --- libc/integral/normalize.inc | 4 ++-- tool/cosmocc/README.md | 2 +- tool/cosmocc/package.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libc/integral/normalize.inc b/libc/integral/normalize.inc index 0426b9f0bad..622fa9bc140 100644 --- a/libc/integral/normalize.inc +++ b/libc/integral/normalize.inc @@ -3,8 +3,8 @@ #endif #define __COSMOPOLITAN_MAJOR__ 3 -#define __COSMOPOLITAN_MINOR__ 3 -#define __COSMOPOLITAN_PATCH__ 10 +#define __COSMOPOLITAN_MINOR__ 4 +#define __COSMOPOLITAN_PATCH__ 0 #define __COSMOPOLITAN__ \ (100000000 * __COSMOPOLITAN_MAJOR__ + 1000000 * __COSMOPOLITAN_MINOR__ + \ __COSMOPOLITAN_PATCH__) diff --git a/tool/cosmocc/README.md b/tool/cosmocc/README.md index 098a19184ad..ece1d107f72 100644 --- a/tool/cosmocc/README.md +++ b/tool/cosmocc/README.md @@ -299,7 +299,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 . The binaries you see here were first published at - which + which is regularly updated. ## Legal diff --git a/tool/cosmocc/package.sh b/tool/cosmocc/package.sh index 26cce58f430..a2bb170a1e9 100755 --- a/tool/cosmocc/package.sh +++ b/tool/cosmocc/package.sh @@ -90,10 +90,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.42/aarch64-gcc.zip + fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.43/aarch64-gcc.zip unzip aarch64-gcc.zip rm -f aarch64-gcc.zip - fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.42/x86_64-gcc.zip + fetch https://github.com/ahgamut/superconfigure/releases/download/z0.0.43/x86_64-gcc.zip unzip x86_64-gcc.zip rm -f x86_64-gcc.zip fi