linux c++ use V8 crash
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
linux c++ use V8 crash, error: Fatal error in CALL_AND_RETRY_LAST Allocation failed - proces out of memory; use: CreateParams params; params.contraints.ConfigureDefaults(1000*1024*1024, 0, 1); Isolate* New(params)
-
linux c++ use V8 crash, error: Fatal error in CALL_AND_RETRY_LAST Allocation failed - proces out of memory; use: CreateParams params; params.contraints.ConfigureDefaults(1000*1024*1024, 0, 1); Isolate* New(params)
I don't know V8. But it seems that you want to allocate about 1 GB (1000 * 1024 * 1024) GB of physical memory and this amount is not available. This may be due to an internal V8 limit (a quick research found the
--max-old-space-size
command line flag) or your system has not enough remaining free physical memory.