im trying my hand at calling c functions from python. im reading up the tutorial http://csl.sublevel3.org/C-functions-from-Python/. however part of the tutorial says that i should
Compiling dynamic libraries on Mac OS X is different from the usual gcc -shared you might be used to:
gcc -dynamiclib -I/usr/include/python2.3/ -lpython2.3 -o myModule.dylib myModule.c
i am not sure how to do this. ive tried typing that under
"add the following commands when calling compiler" under compiler options but it did not work
any help please?