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
When I compile this simple program in lind following the basic directions, it does not work properly:
#include <stdio.h> #include <stdlib.h> #include <unistd.h> int main(void) { printf("Start!\n"); const pid_t other = fork(); printf("2!\n"); return 0; }
The output from running this code in lind is:
@[/home/lind/lind_project] lind> run /simple.nexe executing: [sel_ldr -a -- "runnable-ld.so" --library-path "/lib/glibc" /simple.nexe] [2261,4232416384:15:19:44.122287] BYPASSING ALL ACL CHECKS Start! 2! Start! 2!
It should instead produce output like:
@[/home/lind/lind_project] lind> run /simple.nexe Start! 2! 2!
The text was updated successfully, but these errors were encountered:
I believe this has to do with this issue: Lind-Project/native_client#12
Sorry, something went wrong.
pushed a fix here: Lind-Project/Lind-GlibC#86
yashaswi2000
No branches or pull requests
When I compile this simple program in lind following the basic directions, it does not work properly:
The output from running this code in lind is:
It should instead produce output like:
The text was updated successfully, but these errors were encountered: