| parrotcode: Garbage Collection | |
| Contents | Configuration | 

config/auto/gc.pl - Garbage Collection

Checks whether the --gc command-line option was passed to Configure.pl and sets the memory allocator accordingly.
--gc can take the values:
gclibcmalloc.mallocmalloc-trace    cc_gen('config/auto/gc/test_c.in');
    eval { cc_build(); };
    my $test = 0;
    unless ($@) {
      $test = cc_run();
    }
    cc_clean();
    # used size should be somewhere here
    unless ($test >= 128 && $test < 155) {
      # if not, use own copy of malloc
      $gc = 'malloc';
    }
        
|  |   |