wasm/C: fix default minHeapSize (#848)

This commit is contained in:
kenji yoshida 2023-11-08 04:22:00 +09:00 committed by GitHub
parent bd80c2dfce
commit 07542499e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ public class InProcessBuildStrategy implements BuildStrategy {
private String[] transformers = new String[0];
private String[] classesToPreserve = new String[0];
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 final List<SourceFileProvider> sourceFileProviders = new ArrayList<>();
private boolean heapDump;