Chris Hanson
Chris Hanson
It'd be handy for people who want to hack on Mezzano to have a build script that ensures all required components are downloaded and put in the right place, and...
On my Mac using a very recent macOS and Xcode, I can easily build `fcode-utils` with just a quick `make`, but `make tests` unfortunately fails with a huge set of...
It’d be great to have the UNIX manual pages for `detok`, `romheaders`, and `toke` in addition to the HTML documentation. Ideally both could be produced from the same source.
It’d be useful for porting and continuous integration for the project to support building to a separate directory than the source tree and for this directory to be specifiable on...
It might be good to implement a “presentation layer” for LisaEm that multiple UI implementations could plug into, instead of requiring everyone use the wxWidgets UI. That would allow macOS,...
I tried to build CCL trunk’s kernel for x86-64 Darwin using Xcode 15, and it produces a bunch of errors if I change `OS_VERSION` in the kernel Makefile to `13.0`:...
I primarily use the IDE when working with CCL, but it surprised me to learn it was part of the main codebase. It seems like it should be separate from...
On a lark, I tried to load Quicklisp on MCL 5.2 on an iBook G4 running Mac OS X 10.4.11. It failed because on that platform, there’s no `CCL:make-socket` to...
In order to be correct and to avoid multiple-definition errors from some linkers, declarations like `const char *task_name[task_COUNT];` actually need to be marked `extern` as well.
In `md5_update` the `len` parameter is `unsigned` and in `fp_write_bytes` the `size` parameter is `int`. They should both be `size_t` to avoid 32/64-bit warnings on some platforms.