Frederik Carlier

Results 123 comments of Frederik Carlier
trafficstars

So in this case, it fails when decoding the `_enable` property of the `NSMenuItem` class. I wonder whether https://github.com/gnustep/libs-base/commit/40f88bc6223f4b595e0010f22ff047b52c159cea is related. Here's the full backtrace: frame #3: 0x00007ff8d0f198f6 gnustep-gui-0.dll`-[NSMenuItem initWithCoder:](self=0x0000026c73a819c8,...

To add a bit more color to what @johnathan-becker said: - GCC's libobjc runtime _always_ defines `BOOL` as an `unsigned char`: https://github.com/gcc-mirror/gcc/blob/master/libobjc/objc/objc.h#L55 - GNUstep's libobjc2 runtime defines `BOOL` as `int`...

> I wonder why libobjc2 tries to differ there. Because it supports building natively on Windows, and `BOOL` is defined in the Windows SDK as an int. But on MSYS,...