You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a C++ program question, with a " compilearg -std=c++11" option. But Jobe gives me a 'virtual memory exhausted: Cannot allocate memory' error. If no compilearg given, no this error.
I am wondering where the problem is.
The text was updated successfully, but these errors were encountered:
The RunGuard sandbox within Jobe limits how much memory a task can use. For C++ the default is 200 MB. The most likely explanation for your problem is that using the different standard has pushed the memory requirements for the task over that limit. Try increasing the memory allowed by setting the memorylimit parameter to a larger value, such as 400 (the units are MB).
I have a C++ program question, with a " compilearg -std=c++11" option. But Jobe gives me a 'virtual memory exhausted: Cannot allocate memory' error. If no compilearg given, no this error.
I am wondering where the problem is.
The text was updated successfully, but these errors were encountered: