mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19:18 +02:00
with a tiny heap and causing multiple allocations. pointer adjusting after a moved realloc still segfaults.
31 lines
986 B
C
31 lines
986 B
C
/* config.h -- general configuration */
|
|
/* Copyright (c) 2009 Alex Shinn. All rights reserved. */
|
|
/* BSD-style license: http://synthcode.com/license.txt */
|
|
|
|
/* uncomment this to use the Boehm conservative GC */
|
|
/* #define USE_BOEHM 1 */
|
|
|
|
/* uncomment this if you only want fixnum support */
|
|
/* #define USE_FLONUMS 0 */
|
|
|
|
/* uncomment this if you don't need extended math operations */
|
|
/* #define USE_MATH 0 */
|
|
|
|
/* uncomment this to disable warning about references to undefined variables */
|
|
/* #define USE_WARN_UNDEFS 0 */
|
|
|
|
/* uncomment this to disable huffman-coded immediate symbols */
|
|
/* #define USE_HUFF_SYMS 0 */
|
|
|
|
/* uncomment this to just use a single list for hash tables */
|
|
/* #define USE_HASH_SYMS 0 */
|
|
|
|
/* uncomment this to disable string ports */
|
|
/* #define USE_STRING_STREAMS 0 */
|
|
|
|
/* uncomment this to disable a small optimization for let */
|
|
/* #define USE_FAST_LET 0 */
|
|
|
|
/* uncomment this to enable debugging utilities */
|
|
/* #define USE_DEBUG 1 */
|
|
|