Skip to content

Commit 38af54a

Browse files
committed
Fix GCC version in cosmocc wrapper script
See #1111
1 parent 77a92f5 commit 38af54a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tool/cosmocc/bin/cosmocc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
BIN=${0%/*}
77
PROG=${0##*/}
88
ORIGINAL="$0 $*"
9-
GCC_VERSION=11.2.0
9+
GCC_VERSION=12.3.0
1010
TMPDIR=${TMPDIR:-/tmp}
1111

1212
if [ "$1" = "--version" ]; then
1313
cat <<EOF
1414
$PROG (GCC) $GCC_VERSION
15-
Copyright (c) 2023 Justine Alexandra Roberts Tunney
15+
Copyright (c) 2024 Justine Alexandra Roberts Tunney
1616
Cosmopolitan Libc and LLVM libcxx/compiler-rt are subject to non-GPL
1717
notice licenses, e.g. ISC, MIT, etc. Your compiled programs must embed
1818
our copyright notices. This toolchain is configured to do so default.
1919
Cosmopolitan comes with absolutely NO WARRANTY of any kind.
2020
For more information, see the Cosmopolitan LICENSE files.
21-
Copyright (C) 2019 Free Software Foundation, Inc.
21+
Copyright (C) 2022 Free Software Foundation, Inc.
2222
This launches GNU GCC/Binutils subprocesses, which is free software; see
2323
cosmocc's LICENSE files for source code and copying conditions. There is
2424
NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

tool/cosmocc/bin/cosmocross

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55

66
BIN=${0%/*}
77
PROG=${0##*/}
8-
GCC_VERSION=11.2.0
8+
GCC_VERSION=12.3.0
99

1010
if [ "$1" = "--version" ]; then
1111
cat <<EOF
1212
$PROG (GCC) $GCC_VERSION
13-
Copyright (c) 2023 Justine Alexandra Roberts Tunney
13+
Copyright (c) 2024 Justine Alexandra Roberts Tunney
1414
Cosmopolitan Libc and LLVM libcxx/compiler-rt are subject to non-GPL
1515
notice licenses, e.g. ISC, MIT, etc. Your compiled programs must embed
1616
our copyright notices. This toolchain is configured to do so default.
1717
Cosmopolitan comes with absolutely NO WARRANTY of any kind.
1818
For more information, see the Cosmopolitan LICENSE files.
19-
Copyright (C) 2019 Free Software Foundation, Inc.
19+
Copyright (C) 2022 Free Software Foundation, Inc.
2020
This launches GNU GCC/Binutils subprocesses, which is free software; see
2121
cosmocc's LICENSE files for source code and copying conditions. There is
2222
NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

0 commit comments

Comments
 (0)