Skip to content

Commit c8383f2

Browse files
committed
Release Cosmopolitan v3.3.2
1 parent 64a9e6f commit c8383f2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ export MODE
149149
export SOURCE_DATE_EPOCH
150150
export TMPDIR
151151

152-
COSMOCC = .cosmocc/3.3.1
152+
COSMOCC = .cosmocc/3.3.2
153153
TOOLCHAIN = $(COSMOCC)/bin/$(ARCH)-linux-cosmo-
154-
DOWNLOAD := $(shell build/download-cosmocc.sh $(COSMOCC) 3.3.1 079622f9772c19e24db4bfa71c1ed90b7d436e9a4b6f4c579b525df5a48fe620)
154+
DOWNLOAD := $(shell build/download-cosmocc.sh $(COSMOCC) 3.3.2 a695012ffbeac5e26e3c4a740debc15273f47e9a8bdc55e8b76a623154d5914b)
155155

156156
AS = $(TOOLCHAIN)as
157157
CC = $(TOOLCHAIN)gcc

build/objdump

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ if [ -n "$OBJDUMP" ]; then
66
fi
77

88
find_objdump() {
9-
if [ -x .cosmocc/3.3.1/bin/$1-linux-cosmo-objdump ]; then
10-
OBJDUMP=.cosmocc/3.3.1/bin/$1-linux-cosmo-objdump
11-
elif [ -x .cosmocc/3.3.1/bin/$1-linux-musl-objdump ]; then
12-
OBJDUMP=.cosmocc/3.3.1/bin/$1-linux-musl-objdump
13-
elif [ -x "$COSMO/.cosmocc/3.3.1/bin/$1-linux-cosmo-objdump" ]; then
14-
OBJDUMP="$COSMO/.cosmocc/3.3.1/bin/$1-linux-cosmo-objdump"
15-
elif [ -x "$COSMO/.cosmocc/3.3.1/bin/$1-linux-musl-objdump" ]; then
16-
OBJDUMP="$COSMO/.cosmocc/3.3.1/bin/$1-linux-musl-objdump"
9+
if [ -x .cosmocc/3.3.2/bin/$1-linux-cosmo-objdump ]; then
10+
OBJDUMP=.cosmocc/3.3.2/bin/$1-linux-cosmo-objdump
11+
elif [ -x .cosmocc/3.3.2/bin/$1-linux-musl-objdump ]; then
12+
OBJDUMP=.cosmocc/3.3.2/bin/$1-linux-musl-objdump
13+
elif [ -x "$COSMO/.cosmocc/3.3.2/bin/$1-linux-cosmo-objdump" ]; then
14+
OBJDUMP="$COSMO/.cosmocc/3.3.2/bin/$1-linux-cosmo-objdump"
15+
elif [ -x "$COSMO/.cosmocc/3.3.2/bin/$1-linux-musl-objdump" ]; then
16+
OBJDUMP="$COSMO/.cosmocc/3.3.2/bin/$1-linux-musl-objdump"
1717
else
1818
echo "error: toolchain not found (try running 'cosmocc --update' or 'make' in the cosmo monorepo)" >&2
1919
exit 1

libc/integral/normalize.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define __COSMOPOLITAN_MAJOR__ 3
66
#define __COSMOPOLITAN_MINOR__ 3
7-
#define __COSMOPOLITAN_PATCH__ 1
7+
#define __COSMOPOLITAN_PATCH__ 2
88
#define __COSMOPOLITAN__ \
99
(100000000 * __COSMOPOLITAN_MAJOR__ + 1000000 * __COSMOPOLITAN_MINOR__ + \
1010
__COSMOPOLITAN_PATCH__)

0 commit comments

Comments
 (0)