From 776addfc07b0749e770188f61a07b5ec1353a124 Mon Sep 17 00:00:00 2001 From: bakpakin Date: Wed, 31 Jan 2018 22:53:31 -0500 Subject: [PATCH] Fix install procedure --- CMakeLists.txt | 2 +- src/core/vm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 944dc0ec..98d3d1a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ src/include/dst/dstconfig.h src/include/dst/dstopcodes.h src/include/dst/dstparse.h src/include/dst/dststate.h -src/include/dst/dststl.h +src/include/dst/dstcorelib.h src/include/dst/dsttypes.h ) diff --git a/src/core/vm.c b/src/core/vm.c index 37ede973..24bd91c1 100644 --- a/src/core/vm.c +++ b/src/core/vm.c @@ -798,7 +798,7 @@ int dst_init() { * a collection pretty much every cycle, which is * horrible for performance, but helps ensure * there are no memory bugs during dev */ - dst_vm_gc_interval = 0x00000000; + dst_vm_gc_interval = 0x100000; dst_symcache_init(); /* Set thread */ dst_vm_fiber = NULL;