C.W. Betts

Results 128 comments of C.W. Betts

I've been trying to figure out how to make Executor use Mac OS X's resource forks. I think I found out how to do it (read from `/..namedfork/rsrc`) now I...

Definitely a new Mac front-end. There were a lot of architectural changes when Apple updated NeXTStep to Mac OS X. For instance, the NeXTStep code expects the system encoding to...

First, try also passing `--build=x86_64-pc-linux-gnu --host=i686-pc-linux-gnu` as configure options; second, try `--build=i686-pc-linux-gnu --host=i686-pc-linux-gnu`. `ARCH_TYPE_I386` is defined in **src/config/arch/i386/i386.h** The only thing I can think of that might prevent the inclusion...

Just checking, but you do have sdl-dev installed, right? Did you have -m32 specified in LDFLAGS and CFLAGS/CC? Sent from my iPad > On Jul 17, 2015, at 2:00 PM,...

@autc04's Executor fork is better maintained.

Part of the issues I've run into is assuming that the linker is GNU ld/ELF: Apple's linker is not GNU ld, and it uses an executable format known as Mach....

The Amiga Forever package/installer/disc includes them. Opening one via TextWrangler revealed it to be a compressed file (most likely zip) with disk images, an xml file, a png preview image,...

That seems to be a feature in Big Sur: if you're playing a game and press that button multiple times, it'll begin a recording. I have always denied it so...

Yeah, I used an Xcode project, mainly to see how it would compile under Apple Silicon. One thing about `BOOL` under Apple Silicon: it'll by typedef'd to `bool`. Why Apple...

Ah, so Universal compilation is already handled. Another reason why I wanted to build it under Xcode was to use Xcode assets, including handling of dark mode. But you have...