> From nodejs IRC @fullstack suggested to run "strace -f /usr/local/bin/node" - The result of this is :
https://gist.github.com/aneek/0ef3d9fe1a6521fdee6a
> Also as per @fullstack's suggestion instead of using "python2.7 configure && make && make install" I tried to install with "./configure && make && make install". But error occurred (That's why I used Python2.7)
>
>
>
>
>
>
>
>
> Please help me on this. Thanks in advance!
For posterity:
> syscall_293(0xf33d5c, 0x80000, 0x622f6c61636f6c2f, 0x65646f6e2f6e69, 0x3, 0x7fff291f3f60, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1) = 0x125
strace doesn't recognize it (it's probably too old) but that's the
pipe2() system call and it's returning a rather strange value. If you
interpret it as a sign-extended 64 bits value, it's -293, which can
hardly be a coincidence.
Negative values in the range -4095 to -1 inclusive is how the Linux
kernel returns error codes but why it returns that particular value is
beyond me; normal error codes approximately fall in the range -133 to
-1.
At any rate, we can probably figure it out. If you file an issue at
https://github.com/libuv/libuv/issues and include the output of `uname
-a`, I'll take a look.
In case you're wondering, libuv is the I/O library that node uses
under the hood; that pipe2() system call originates from it.