Cosmopolitan Versions Save

build-once run-anywhere c library

3.3.3

1 month ago
  • 9ff65cff63 Fix ZipOS extraction of ZIP64 assets
  • bef2cb05ff Fix AVX512_BF16
  • 43885a76e4 Fix binary formatting for integers 2 and 3 (#1123)
  • 74a85087de Support -S in cosmocross
  • 045632a743 Make fixupobj work on Windows
  • 9a10adac35 Remove .com from README
  • 0c12c26e1d Update Emacs config
  • 40b7da8422 Speed up fmaf() on x86
  • 640668931d Clarify MacOS supported versions
  • 1c34088ba0 Ignore -pie and -fpie in cosmocc
  • bb92347158 Add deprecated stubs for _bsf / _bsr
  • 8bfd56b59e Rename _bsr/_bsf to bsr/bsf
  • a6baba1b07 Stop using .com extension in monorepo

3.3.2

2 months ago

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

  • 64a9e6fe5 Fix compiler runtime for _Float16 type
  • 0ef36489c Walk back most uses of __STRICT_ANSI__

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

3.3.1

2 months ago

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.

  • 77ddf4cb0 Fix cosmocc on MacOS ARM64
  • 29eac8e2a Fix regression in logger functions
  • f7ff51596 *scanf() fixes to make TeX work (#1109)
  • 77a92f517 Introduce getcpu() system call from glibc
  • a5a3e78fc Make ftrace/strace C APIs work with cosmocc
  • e9a756e78 Make --ftrace more crash proof with foreign code
  • 7c7bf4bb9 Upgrade to superconfigure z0.0.34
  • fc3c536ec Make --ftrace work better with cosmocc
  • 38af54a2d Fix GCC version in cosmocc wrapper script
  • 99f0491f0 Fix invalid XNU binaries generated by apelink in some edge cases (#1106)
  • 38bceaeb8 Give up on making clock_nanosleep() precise
  • 592f6ebc2 Address the Musl complex math FIXME comments
  • 592f6ebc2 Some libm funcs like pow() now support setting errno
  • 592f6ebc2 Use more accurate atan2f() and log1pf() implementations
  • 592f6ebc2 atoi() and atol() will no longer saturate or clobber errno
  • 592f6ebc2 Import the latest and greatest math functions from ARM Ltd.
  • 9b4701b3b e72a88ea7 Don't include <crypt.h> from <stdlib.h> (#1112)
  • 3eb405e0e Resurrect <windows.h> as <windowsesque.h>
  • 68b9479f0 Make cosmo.h work a little better
  • 592f6ebc2 memcpy() on ARM is now faster
  • af8f2bd19 Shave 4kb off each binary
  • ad3944a3b Support any HTTP method

Known Issues

Mirrors

3.3

2 months ago

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 c1e18e790
  • 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 d50064a77 and #1096
  • Calling pthread_create() will no longer raise an assertion error if it fails, as of 8ebe2e902
  • 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 fd75fd146
  • 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 77ddf4cb0734492e4ab6580ba70c6948347a95a5)
  • Compiling the mono repo on Windows is currently broken due to #1010. In the meantime, use cosmopolitan-3.2.tar.gz

3.2.4

3 months ago

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.

  • b580080af tool/cosmocc: Allow exceptions and rtti (#1074)
  • b0566348b third_party/libcxxabi: Add test suite (#1076)
  • b09096691 third_party: Add libunwind (#1053)
  • 81ce2e4cb Call thread finalizers on exit()
  • 94bab1618 Add fixes to libunwind (#1069)
  • 8b33204f3 Add LLVM libcxxabi (#1063)
  • 6ab01716c Fix aarch64 setjmp abi

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.

  • a4b455185 Bring back gc() function

Here's some additional developments since the last release:

  • df648fb17 Revert apeinstall.sh binfmt flags (#1072)
  • cafea9a0a Flesh out tool/zsh/mkofs
  • 6cb0354e1 mkofs improvements
  • 16099801c zsh mkofs tool

Known Issues

  • Compiling the mono repo on Windows is currently broken due to #1010. In the meantime, use cosmopolitan-3.2.tar.gz

3.2.3

3 months ago

This release introduces two new features:

  • b3fb6cff4 Add /dev/fd support to Windows
  • ce17ed60d 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.

  • 5e7137097 Make breaking change to cosmo_dlsym()

The following fixes have been implemented:

  • 5ae2554c1 Have cosmo_dlopen() request -z execstack on Linux
  • aa37a327e Make $prog.ape more reliable on Apple Silicon (#1071)
  • 390335eb4 apeinstall/uninstall.sh can use doas (#1062)
  • d27a47b0e 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.

3.2.2

3 months ago

Function pointers are now safer when using dynamically linked libraries.

  • fad1279c6 Make cosmo_dlopen() safer and faster

3.2.1

4 months ago
  • 0e49bed66 Support 40 cosmo_dlopen() function parameters
  • 2d93788ce Fix --ftrace with cosmo_dlopen()
  • 44a463e4d Invent *cosmo_dltramp() function
  • 15548b523 Cleanup apeinstall.sh (#1057)
  • 412a200ae Support binfmt_misc P flag in APE loader (#1058)
  • a334f9cc3 Update redbean ProgramDirectory to return a list of previously set directories (#1021)
  • 3315b6ef1 Store StrlenDevFd in n (#1056)

3.2

4 months ago

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.

  • 83107f78e Introduce FreeBSD ARM64 support
  • 43fe5956a Use DNS implementation from Musl Libc
  • 796148790 Remove hard coded paths from APE bootloader (NixOS)
  • f8ea02d4d Import /etc/shadow support from Musl for Linux
  • ce0143e2a Fix madvise() on Windows
  • 873069fcd Fix -Xaarch64 in cosmocc
  • 1a28e35c6 Use good locks in dlmalloc
  • cd52c5955 Allow MAP_POPULATE under pledge()
  • e36283f1d Support double parameters in dlsym() imports
  • 6be9477b9 Fix redbean to only check additional content types when Lua is present (#1033)

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

  • 53357aa26 Fix __zipos_close (#984)
  • 8a10ccf9c Fix ZipOS deadlock/segfault (#1011)
  • 5c3586352 Rename __zipos_free -> __zipos_drop (#1043)
  • 4c6f928fb Disable argv[0] tests on non-XnuSilicon (#1015)

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.

  • 81949f038 Mint APE Loader v1.10
  • 2a3813c6c $prog.ape support (#977)
  • f94c11d97 Loader path security (#1012)
  • 68dbe5312 Prepend getcwd to exename early in init (#1048)
  • b02d13ccd Re-enable/fix non-argv[0] exe name tests (#1046)
  • 10b4693e3 Sanity-check set-id interpreter script paths (#1029)
  • 77facc4f7 Cover more cases for detecting ape loader (#1022)
  • 2a11a09d9 Remove realpath/getcwd from loaders (#1024)
  • d8ad34686 Implement issetugid() on NetBSD

Our public header files now have better open source compatibility.

  • 8874a37ab Add <link.h> for absl
  • 221a27836 Define max_align_t in <stddef.h>
  • 06ace4e7b Always use compiler builtin for offsetof()
  • a11016e59 Use gid_t and uid_t in passwd.h (#995)
  • b0cced855 Move tcgetpgrp and tcsetpgrp decls to unistd.h (#996) (#997)

3.1.3

5 months ago
  • 69ba51646 Revert "Re-enable apelink size optimization"