Justine Tunney
Justine Tunney
Could you try grabbing the `bash` binary from `cli.zip` on https://github.com/ahgamut/superconfigure/releases/tag/z0.0.19 please? If it's still crashing, then you can use `lldb -- ape ./bash`. Speaking of which, it's a good...
Oh I forgot to mention, we have an easier debugging strategy. Try running `./bash --strace` and `./bash --ftrace`. That should print good insights into where it crashed. If those flags...
Congratulations on getting libgc to mostly work. I didn't think we were there yet. C++ exceptions is a huge ask, a jupetarian ask. So I've changed the focus of this...
You should be good to go. Here's how you can rebuild bash yourself until we get another release shipped. ```sh cd ncurses-6.4 ./configure CC=cosmocc --prefix=/opt/cosmos --disable-shared make -j make install...
Each bona fide issue can be its own issue. Or one if that's easier for you. The thing I care about with issues is clear steps to reproduce, which you...
I'm sorry but this issue tracker is for bug reports and feature requests. Binaries have already been released which incorporate this change. You can download them at https://cosmo.zip/ e.g. https://cosmo.zip/pub/cosmos/bin/bash
This issue has something to do with the data read from the console being fed into a `pipe()` and it's hitting the `PIPE_BUF` limit before anything is reading from the...
@dflock can you try adding `"startingDirectory": "C:\\"` there?
Whatever you're using to run `make` is probably leaking file descriptors into the process. Try changing this to close file descriptors up to 200. https://github.com/jart/cosmopolitan/blob/062b2d776e8b18aea444fe81e186c1c39a465806/libc/testlib/testmain.c#L98-L100
Looks like you need makecontext(). We used to have it. I can't remember why we don't anymore. I'll start bringing it back now