Thread: compiling
Hi I was trying to build a new base data type into postgres. i am using 7.4.8 on debian. There is already an eg in src/tutorial which gives code for intenal and external functions of a new type called complex. I tried to create a shared library for the file complex.c using "cc -fpic -c complex.c" .That gave me a lot of errors like the header files "fmgr.h" and "postgres.h" did not exist. Then I did a "cc -shared -o complex.so complex.o". The .so file had not been created. After that I went into postgres and tried to create the functions corresponding to the new type. It says the file complex.so could not be found. So the shared library seems to have not been created. Does anybody know what the problem might be. If anybody could tell me how to compile a C file in any directory and link it to postgres I would really appreciate it. Thank you Moginraj