[plt-scheme] Still embedding mzscheme on osx

From: Bourbaki (marvintdr at gmx.net)
Date: Sun May 29 14:20:12 EDT 2005

this is the program i try to compile

#include "scheme.h"

int main(int argc, char *argv[])
{
     	int dummy;
     	scheme_set_stack_base(&dummy, 1);
	Scheme_Env *e = scheme_basic_env();
	return 0;
}

this is the command i use to compile the program

gcc -I/Applications/PLT\ MzScheme\ v299.100/include -framework 
PLT_Mzscheme  test.c -o test

once i run the program i get the following error message

standard-module-name-resolver: collection not found: "mzlib" in any of: 
()

although the mzlib.o is in the right place (that is the one that it was 
copied to when i installed the package)



Posted on the users mailing list.