Results 331 comments of Sergii Pylypenko

Eh okay. SDL2 is designed to abstract away Linux/Windows/MacOS differences, it seems counter-intuitive that OpenTTD is not using this feature. Well, we can copypaste SDL2 implementation at least. https://github.com/libsdl-org/SDL/blob/main/src/video/windows/SDL_windowsclipboard.c#L51 https://github.com/libsdl-org/SDL/blob/main/src/video/cocoa/SDL_cocoaclipboard.m#L29...

Yes, releasing the feature only for Linux makes little sense. I'm not using Windows or MacOS, I can only point to SDL2 clipboard implementation. Someone else will need to fill...

Guest rootfs is Debian Wheezy armhf. There are no error messages, just 'Application terminated with signal SIGFAULT'. I'll try to debug it when I'll have time, maybe rollback proot and...

What I've discovered so far: fpc works with proot 4.0.3, and crashes with proot 5.0.0. I've attached console output when running "proot -v 100 fpc" with both versions of proot:...

Did you use QEMU, native Debian, or Android device? I know that QEMU executes code with misaligned memory access correctly, while such code will fail on an actual hardware. Anyway,...

Okay, so it seems to be Android-specific. Or maybe I compiled PRoot incorrectly, I will try the precompiled version from your site. On Dec 3, 2014 11:58 AM, "Cédric VINCENT"...

https://github.com/pelya/cuntubuntu/blob/master/dist/proot?raw=true It uses directory 'tmp' inside chroot to save it's files, so it should be created beforehand. On Dec 3, 2014 3:05 PM, "Cédric VINCENT" [email protected] wrote: > I'd like...

I tried the proot-arm prebuilt binary from your site, extracted proot-arm-loader, set PROOT_LOADER, and fpc launched fine with it. Magic! Cherry-picking that commit into my proot sourcetree did not help...

How are you building PRoot? Are you using QEMU ARM chroot, Virtualbox, or live development board? I'm cross-compiling it using arm-linux-gnueabihf-gcc 4.5 toolchain, downloaded from emdebian.org. I guess I'll just...

Hi. I've made another patch to read temp directory location from PROOT_TMPDIR env variable, sorry that it took so long. It uses **attribute**((constructor)) GCC extension and a bit of #define...