Closed diamondman closed 3 years ago
My compile script uses the following arguments for the master branch:
./configure --debug --without-dtrace --without-etw --without-perfctr \
--without-ssl --without-inspector --without-intl --without-snapshot \
--dest-cpu x64 --without-bundled-v8
We are not actively developing the master branch (node8) anymore, we are focusing on the v14-jerry branch (node14). It is easier to configure it:
./configure --debug
We have achieved around 87% pass rate on parallel tests. Currently even if you compile a release node, all asserts are present in the code which is good for our development, but these asserts should be disabled to improve performance at some point.
Thanks for the info. I will later try again with the other branch. Closing for now.
When I run
./configure
on the master branch on my amd64 linux (debian 10) host, I receive the following error:The variable
o['variables']['host_platform']
is not initialized.I have a patch ready that sets host_platform to an empty string by default:
But when I build with this on my x64 host and run the resulting node binary, any command (even an empty line) will cause it to infinitely loop the following message until the process is killed:
I am filing these together in case they are related and my fix missed something. I am happy to provide my patch as a PR and file a different issue if these are unrelated.