diff --git a/src/config.nim b/src/config.nim index 6014eb9..12c2291 100644 --- a/src/config.nim +++ b/src/config.nim @@ -21,13 +21,13 @@ when HEAP_GROW_FACTOR <= 1: {.fatal: "Heap growth factor must be > 1".} const PEON_VERSION* = (major: 0, minor: 1, patch: 0) const PEON_RELEASE* = "alpha" -const PEON_COMMIT_HASH* = "231b7012a17e98c7bcb2b475289cfcdddaf4a7d8" +const PEON_COMMIT_HASH* = "e90ac2f4eb7ea5b95467bae5439cd21d2e89a812" when len(PEON_COMMIT_HASH) != 40: {.fatal: "The git commit hash must be exactly 40 characters long".} const PEON_BRANCH* = "master" when len(PEON_BRANCH) > 255: {.fatal: "The git branch name's length must be less than or equal to 255 characters".} -const DEBUG_TRACE_VM* = true # Traces VM execution +const DEBUG_TRACE_VM* = false # Traces VM execution const DEBUG_TRACE_GC* = false # Traces the garbage collector (TODO) const DEBUG_TRACE_ALLOCATION* = false # Traces memory allocation/deallocation const DEBUG_TRACE_COMPILER* = false # Traces the compiler