如何让libgc在Mac OS X中运行?

时间:2012-05-27 12:27:30

标签: macports boehm-gc

我一定错过了什么。即使是使用libgc的最简单的测试程序也会失败。有线索吗?

$ cat test.c 
#include <gc/gc.h>

int main(void)
{
    char *s;

    s = GC_MALLOC(1);
    return 0;
}

$ cc -ansi -pedantic -Wall -I/opt/local/include -L/opt/local/lib -o test test.c -lgc

$ ./test
Segmentation fault

我正在使用与macports一起安装的libgc版本。

1 个答案:

答案 0 :(得分:0)

显然我需要调用GC_INIT使libgc在Mac OS X上运行,所以我的测试程序将是:

#include <gc/gc.h>

int main(void)
{
    char *s;

    GC_INIT();
    s = GC_MALLOC(1);
    return 0;
}