Comment #2 on issue 2885 by [email protected]: mksnapshot's output
isn't deterministic
http://code.google.com/p/v8/issues/detail?id=2885
There are basically 2 sources of non-determinism here:
* You have to specify --random-seed=<some_number> to mksnapshot,
otherwise the RandomNumberGenerator constructor will choose some random
seed.
* You have to make sure that ASLR is off for your OS. On Linux this
means you have to issue:
sudo sh -c 'echo 0 > /proc/sys/kernel/randomize_va_space'
before calling mksnapshot (2 is the default value, enabling full
randomization). Note that this is a global setting.
The question is: Do we really want this? I was no big fan of this
randomization stuff, anyway...
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.