Comment #2 on issue 3165 by [email protected]: Process out of memory
exceptions on OS X 10.5 Leopard
http://code.google.com/p/v8/issues/detail?id=3165
Well, on the project homepage you advertise V8 as running on "Mac OS X
(10.5 or newer)". Also, the build scripts in SVN trunk still define the OS
X deployment target as 10.5 (build/standalone.gypi) and platform-posix.cc
contains work-arounds for other problems related to OS X 10.5:
double ceiling(double x) {
// Correct buggy 'ceil' on some systems (i.e. FreeBSD, OS X 10.5)
return (-1.0 < x && x < 0.0) ? -0.0 : ceil(x);
}
If you don't want to fix this, that's fine for me as I can apply a patch in
my tree. I double checked that 10.5 is still supported before posting this,
though. You should update at least the project homepage if it isn't anymore.
--
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/d/optout.