mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
wasm/C: fix default minHeapSize (#848)
This commit is contained in:
parent
bd80c2dfce
commit
07542499e1
|
@ -60,7 +60,7 @@ public class InProcessBuildStrategy implements BuildStrategy {
|
||||||
private String[] transformers = new String[0];
|
private String[] transformers = new String[0];
|
||||||
private String[] classesToPreserve = new String[0];
|
private String[] classesToPreserve = new String[0];
|
||||||
private WasmBinaryVersion wasmVersion = WasmBinaryVersion.V_0x1;
|
private WasmBinaryVersion wasmVersion = WasmBinaryVersion.V_0x1;
|
||||||
private int minHeapSize = 4 * 1024 * 1204;
|
private int minHeapSize = 4 * 1024 * 1024;
|
||||||
private int maxHeapSize = 128 * 1024 * 1024;
|
private int maxHeapSize = 128 * 1024 * 1024;
|
||||||
private final List<SourceFileProvider> sourceFileProviders = new ArrayList<>();
|
private final List<SourceFileProvider> sourceFileProviders = new ArrayList<>();
|
||||||
private boolean heapDump;
|
private boolean heapDump;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user