We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm trying to compile the latest released VM in Manjaro but getting the following error:
4439 | reapChildProcessWrapper(int sigNum, struct __siginfo * sigInfo, void * userData){ | ^~~~~~~~~ /home/gcotelli/Programming/repos/3rd-party-deps/pharo-vm/extracted/plugins/UnixOSProcessPlugin/src/common/UnixOSProcessPlugin.c: In function ‘setSigChldHandler’: /home/gcotelli/Programming/repos/3rd-party-deps/pharo-vm/extracted/plugins/UnixOSProcessPlugin/src/common/UnixOSProcessPlugin.c:4454:43: error: assignment to ‘void (*)(int, siginfo_t *, void *)’ from incompatible pointer type ‘void (*)(int, struct __siginfo *, void *)’ [-Wincompatible-pointer-types] 4454 | sigchldHandlerAction.sa_sigaction = reapChildProcessWrapper; .... make[2]: *** [CMakeFiles/UnixOSProcessPlugin.dir/build.make:76: CMakeFiles/UnixOSProcessPlugin.dir/extracted/plugins/UnixOSProcessPlugin/src/common/UnixOSProcessPlugin.c.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:693: CMakeFiles/UnixOSProcessPlugin.dir/all] Error 2 make: *** [Makefile:156: all] Error 2
I'm following the instructions in the wiki, which are
cmake -S . -B build
cmake --build build --target install
Am I missing something obvious?
The text was updated successfully, but these errors were encountered:
Hmm, I wonder if we should not use siginfo_t instead of struct __siginfo
siginfo_t
struct __siginfo
Sorry, something went wrong.
No branches or pull requests
Hi, I'm trying to compile the latest released VM in Manjaro but getting the following error:
I'm following the instructions in the wiki, which are
cmake -S . -B build
cmake --build build --target install
Am I missing something obvious?
The text was updated successfully, but these errors were encountered: