Status: New
Owner: ----

New issue 1508 by [email protected]: MingW build broken on V8 3.4.8
http://code.google.com/p/v8/issues/detail?id=1508

v8/src/platform-win32.cc has the following

#ifdef _MSC_VER

namespace v8 {
namespace internal {

intptr_t OS::MaxVirtualMemory() {
  return 0;
}
...

Using mingw compiler, the MaxVirtualMemory() method is not available. We get link errors from heap.cc which calls this method.

c:\srchr\node\build\default\libv8.a(heap.o):heap.cc:(.text$_ZN2v88internal4HeapC2Ev+0x2ff): undefined reference to `v8::internal::OS::MaxVirtualMemory()'collect2: ld returned 1 exit status

Also it looks like the }} for the namespace is not closed inside this #ifdef


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to