Skip to content

Releases: jart/cosmopolitan

Cosmopolitan v3.3.3

31 Mar 03:12
98d06b2
Compare
Choose a tag to compare
  • 9ff65cf Fix ZipOS extraction of ZIP64 assets
  • bef2cb0 Fix AVX512_BF16
  • 43885a7 Fix binary formatting for integers 2 and 3 (#1123)
  • 74a8508 Support -S in cosmocross
  • 045632a Make fixupobj work on Windows
  • 9a10ada Remove .com from README
  • 0c12c26 Update Emacs config
  • 40b7da8 Speed up fmaf() on x86
  • 6406689 Clarify MacOS supported versions
  • 1c34088 Ignore -pie and -fpie in cosmocc
  • bb92347 Add deprecated stubs for _bsf / _bsr
  • 8bfd56b Rename _bsr/_bsf to bsr/bsf
  • a6baba1 Stop using .com extension in monorepo

Cosmopolitan v3.3.2

27 Feb 17:31
c8383f2
Compare
Choose a tag to compare

This release fixes two issues with the recent 3.3.1 cosmocc release.

  • 64a9e6f Fix compiler runtime for _Float16 type
  • 0ef3648 Walk back most uses of __STRICT_ANSI__

Please see the previous release for the latest cosmos and further details.

Cosmopolitan v3.3.1

27 Feb 09:11
7c7bf4b
Compare
Choose a tag to compare

This release fixes regressions introduced by v3.3, squashes additional bugs,
makes reliability and quality improvements, makes math better, and introduces
the getcpu() system call.

  • 77ddf4c Fix cosmocc on MacOS ARM64
  • 29eac8e Fix regression in logger functions
  • f7ff515 *scanf() fixes to make TeX work (#1109)
  • 77a92f5 Introduce getcpu() system call from glibc
  • a5a3e78 Make ftrace/strace C APIs work with cosmocc
  • e9a756e Make --ftrace more crash proof with foreign code
  • 7c7bf4b Upgrade to superconfigure z0.0.34
  • fc3c536 Make --ftrace work better with cosmocc
  • 38af54a Fix GCC version in cosmocc wrapper script
  • 99f0491 Fix invalid XNU binaries generated by apelink in some edge cases (#1106)
  • 38bceae Give up on making clock_nanosleep() precise
  • 592f6eb Address the Musl complex math FIXME comments
  • 592f6eb Some libm funcs like pow() now support setting errno
  • 592f6eb Use more accurate atan2f() and log1pf() implementations
  • 592f6eb atoi() and atol() will no longer saturate or clobber errno
  • 592f6eb Import the latest and greatest math functions from ARM Ltd.
  • 9b4701b e72a88e Don't include <crypt.h> from <stdlib.h> (#1112)
  • 3eb405e Resurrect <windows.h> as <windowsesque.h>
  • 68b9479 Make cosmo.h work a little better
  • 592f6eb memcpy() on ARM is now faster
  • af8f2bd Shave 4kb off each binary
  • ad3944a Support any HTTP method

Known Issues

  • OpenMP is hairy on MacOS ARM for nontrivial applications.
  • Compiling the mono repo on Windows is currently broken due to #1010. In the meantime, use cosmopolitan-3.2.tar.gz

Mirrors

Cosmopolitan v3.3

20 Feb 22:26
957c61c
Compare
Choose a tag to compare

Cosmopolitan Libc makes C a build-once run-anywhere language, like Java, except it doesn't need an interpreter or virtual machine. Instead, it reconfigures stock GCC and Clang to output a POSIX-approved polyglot format that runs natively on Linux + Mac + Windows + FreeBSD + OpenBSD + NetBSD + BIOS with the best possible performance and the tiniest footprint imaginable. For further details, read Cosmopolitan Third Edition, the Cosmo README, and the Cosmopolitan Toolchain README.

Major Changes

This release upgrades us to GCC 12.3 and binutils 2.42. The GNU linker
appears to have changed things so that only a single de-duplicated str
table is present in the binary, and it gets placed wherever the linker
wants, regardless of what the linker script says. To cope with that we
need to stop using .ident to embed licenses. As such, this change does
significant work to revamp how third party licenses are defined in the
codebase, using .section .notice,"aR",@progbits.

This new GCC 12.3 toolchain has support for GNU indirect functions. It
lets us support __target_clones__ for the first time. It is used for
optimizing the performance of libc string functions such as strlen and
friends so far on x86, by ensuring AVX systems favor a second codepath
that uses VEX encoding. It shaves some latency off certain operations.
It's a useful feature to have for scientific computing for the reasons
explained by the test/libcxx/openmp_test.cc example which compiles for
fifteen different microarchitectures. Thanks to the upgrades, it's now
also possible to use newer instruction sets, such as AVX512FP16, VNNI.

Experimental support has been added for OpenMP, which lets you whip up
multithreaded mathematical code very easily. It works on all supported
platforms for simple examples like openmp_test.cc but you may run into
issues on MacOS ARM64 with more complicated usage.

Cosmo now uses the %gs register on x86 by default for TLS. Doing it is
helpful for any program that links cosmo_dlopen(). Such programs had
to recompile their binaries at startup to change the TLS instructions.
That's not great, since it means every page in the executable needs to
be faulted. The work of rewriting TLS-related x86 opcodes, is moved to
fixupobj.com instead. This is great news for MacOS x86 users, since we
previously needed to morph the binary every time for that platform but
now that's no longer necessary. The only platforms where we need fixup
of TLS x86 opcodes at runtime are now Windows, OpenBSD, and NetBSD. On
Windows we morph TLS to point deeper into the TIB, based on a TlsAlloc
assignment, and on OpenBSD/NetBSD we morph %gs back into %fs since the
kernels do not allow us to specify a value for the %gs register.

OpenBSD users are now required to use APE Loader to run Cosmo binaries
and assimilation is no longer possible. OpenBSD kernel needs to change
to allow programs to specify a value for the %gs register, or it needs
to stop marking executable pages loaded by the kernel as mimmutable().

Other Changes

  • This release fixes __constructor__, .ctor, .init_array, and .preinit_array so they behave the exact same way as glibc.
  • The math.h constants no longer use hex notation.
  • WinMain() will now ensure $HOME and $USER are always defined.
  • Redbean Fetch redirect with relative URLs has been fixed (#1034)
  • The complex.h header now works and support is added for struct ipv6_mreq (#1100)
  • MODE=dbg support is now restored, as of c1e18e7
  • The static yoinks for blink, i.e. __static_yoink("blink_linux_aarch64"), and __static_yoink("blink_xnu_aarch64"), have been removed. Please build blink from source on your platform to use blink to run cosmo binaries.
  • There's a now Curve25519() API added to redbean in d50064a and #1096
  • Calling pthread_create() will no longer raise an assertion error if it fails, as of 8ebe2e9
  • cosmocc now properly handles dependency output in #1091
  • The __cxa_thread_atexit prototype has been fixed in #1088
  • The final remaining libcxx source files have been added in #1089
  • cosmocc is now fixed so that it doesn't run fixupobj on text output in #1084
  • The STL is now more conformant since std::pair can now be trivial fd75fd1
  • Most libc functions are now annotated as dontthrow, to save on size.

Notes

Cosmopolitan no longer distributes cosmo binaries for QuickJS, because
Fabrice Bellard is now doing it himself on his website. You should use
his binaries instead: https://bellard.org/quickjs/

Errata

  • cosmocc --version reports the incorrect gcc version.
  • cosmocc builds are broken on macos arm (fixed in 77ddf4c)
  • Compiling the mono repo on Windows is currently broken due to #1010. In the meantime, use cosmopolitan-3.2.tar.gz

Cosmopolitan v3.2.4

09 Jan 04:27
cb19e17
Compare
Choose a tag to compare

Cosmopolitan Libc makes C a build-once run-anywhere language, like Java, except it doesn't need an interpreter or virtual machine. Instead, it reconfigures stock GCC and Clang to output a POSIX-approved polyglot format that runs natively on Linux + Mac + Windows + FreeBSD + OpenBSD + NetBSD + BIOS with the best possible performance and the tiniest footprint imaginable. For further details, read Cosmopolitan Third Edition, the Cosmo README, and the Cosmopolitan Toolchain README.

This v3.2.4 release of Cosmopolitan introduces C++ exceptions and RTTI,
which can be enabled by passing the -fexceptions and/or -rtti flags
to your cosmocc compiler.

If C is your preferred language, then you can use Cosmopolitan garbage
collection via our new gc() macro. To enable this feature, you need to
pass the -mcosmo flag to cosmocc. For example, to say gc(malloc(32))
means that memory will be reclaimed when your function returns, and it
will be reclaimed by pthread_exit() too. There's also defer() which is
generalized and allows any callback. Pointers exist on a shadow stack.

Here's some additional developments since the last release:

Known Issues

Cosmopolitan v3.2.3

07 Jan 20:49
4cd02c2
Compare
Choose a tag to compare

This release introduces two new features:

  • b3fb6cf Add /dev/fd support to Windows
  • ce17ed6 Support -MF and -MT in cosmocc

Your cosmo_dlsym() function now returns the raw symbols. You need to
update your code to call cosmo_dltramp() on the result, otherwise it
will crash on Windows. Better yet, just use __ms_abi__ if you can.

  • 5e71370 Make breaking change to cosmo_dlsym()

The following fixes have been implemented:

  • 5ae2554 Have cosmo_dlopen() request -z execstack on Linux
  • aa37a32 Make $prog.ape more reliable on Apple Silicon (#1071)
  • 390335e apeinstall/uninstall.sh can use doas (#1062)
  • d27a47b Bugfix: ape --help should exit 0 (#1060)

Known Issues

APE Loader has a backwards compatibility regression right now. If you
run ape/apeinstall.sh on Linux then, due to a new binfmt_misc feature,
many old APE binaries that need to load zip assets will refuse to run. You
can fix that on Linux x64 for example by running:

ape/apeuninstall.sh
make -j8 o//ape
sudo mv o//ape/ape.elf /usr/bin/ape
sudo sh -c "echo ':APE:M::MZqFpD::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register"
sudo sh -c "echo ':APE-jart:M::jartsr::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register"

This will be solved by the next release, to ensure that only modern
APE binaries can use Linux's new P feature. APE is after all designed
to stand the test of time. The intent is to support every APE executable
created since the beginning of the project.

Cosmopolitan v3.2.2

06 Jan 05:26
91de6f1
Compare
Choose a tag to compare

Function pointers are now safer when using dynamically linked libraries.

  • fad1279 Make cosmo_dlopen() safer and faster

Cosmopolitan v3.2.1

05 Jan 23:50
c60b150
Compare
Choose a tag to compare
  • 0e49bed Support 40 cosmo_dlopen() function parameters
  • 2d93788 Fix --ftrace with cosmo_dlopen()
  • 44a463e Invent *cosmo_dltramp() function
  • 15548b5 Cleanup apeinstall.sh (#1057)
  • 412a200 Support binfmt_misc P flag in APE loader (#1058)
  • a334f9c Update redbean ProgramDirectory to return a list of previously set directories (#1021)
  • 3315b6e Store StrlenDevFd in n (#1056)

Cosmopolitan v3.2

04 Jan 18:15
a3deef7
Compare
Choose a tag to compare

Cosmopolitan Libc makes C a build-once run-anywhere language, like Java, except it doesn't need an interpreter or virtual machine. Instead, it reconfigures stock GCC and Clang to output a POSIX-approved polyglot format that runs natively on Linux + Mac + Windows + FreeBSD + OpenBSD + NetBSD + BIOS with the best possible performance and the tiniest footprint imaginable. For further details, read Cosmopolitan Third Edition, the Cosmo README, and the Cosmopolitan Toolchain README.

Our latest 3.2 release features exciting fixes and improvements.

  • 83107f7 Introduce FreeBSD ARM64 support
  • 43fe595 Use DNS implementation from Musl Libc
  • 7961487 Remove hard coded paths from APE bootloader (NixOS)
  • f8ea02d Import /etc/shadow support from Musl for Linux
  • ce0143e Fix madvise() on Windows
  • 873069f Fix -Xaarch64 in cosmocc
  • 1a28e35 Use good locks in dlmalloc
  • cd52c59 Allow MAP_POPULATE under pledge()
  • e36283f Support double parameters in dlsym() imports
  • 6be9477 Fix redbean to only check additional content types when Lua is present (#1033)

We've fixed important threading bugs on /zip/... file descriptors.

We now have a hack that lets you use cosmo binaries as a login shell.
Setuid security is improved. Executable path self-detection is better.
There's a new APE loader version as a result. If you have a systemwide
APE loader install, it's recommended that you upgrade, but not required.

Our public header files now have better open source compatibility.

  • 8874a37 Add <link.h> for absl
  • 221a278 Define max_align_t in <stddef.h>
  • 06ace4e Always use compiler builtin for offsetof()
  • a11016e Use gid_t and uid_t in passwd.h (#995)
  • b0cced8 Move tcgetpgrp and tcsetpgrp decls to unistd.h (#996) (#997)

Cosmopolitan v3.1.3

01 Dec 18:46
450d9b1
Compare
Choose a tag to compare
  • 69ba516 Revert "Re-enable apelink size optimization"