--
You received this message because you are subscribed to the Google Groups "v8cgi" group.
To post to this group, send email to v8...@googlegroups.com.
To unsubscribe from this group, send email to v8cgi+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/v8cgi?hl=en.
Christoph
Looking forward to it!
> P.S. I started looking into OpenSSL to enable HTTPS download, stay tuned :)
FYI, I have updated the test programs project with a bunch more info
and easier ways to run demos and tests:
https://github.com/pinf/test-programs-js
Looking forward to it!
> P.S. I started looking into OpenSSL to enable HTTPS download, stay tuned :)
FYI, I have updated the test programs project with a bunch more info
and easier ways to run demos and tests:
https://github.com/pinf/test-programs-js
The SSL library is somewhat working, so the downloads are okay now. Next issues:
1) SYSTEM.exec expects an API not present in v8cgi; trying to work around.
Is this due to not having stdout and stderr available after executing the command? GPSEE has the same issue as will likely all the other platforms other than node.
1) SYSTEM.exec expects an API not present in v8cgi; trying to work around.
At the moment I am not checking the exit code which is something I should do and could solve this issue short-term. Once that is in place separating stdout and stderr is not as critical although nice (may not be needed for the loader adapter layer but when used from applications I find it super useful). One suggestion that has been made is to redirect stdout and stderr to files and then pick up the files after and return content along with exit code. This should be optional.
The primary uses for EXEC in the loader are to decompress zip and tar.gz files and remove directory trees by running 'rm -R ...' as far as I can remember. That is all that should be needed to download and resolve dependencies. If you can compile in native implementations of these then we can get rid of the exec calls which would be even better (planned for all platforms long-term).
FYI, I will not have time to review/push any code until after Oct 17.
Christoph