Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Lars
Great! Thanks for the advice. Lars -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Jason Tishler
On Thu, May 04, 2006 at 06:23:23AM -0700, Lars wrote: > But first compiling hello.c with gcc, then linking it with gnu-ld just > won't work. I only really need to compile one C-file to a shared > library so it doesn't matter so much for me. But bigger projects will > have a problem.. No, it works

Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Lars
Thanks Jason, it works now. There seems to be some sort of issue with ld in cygwin when compiling shared libraries (e.g. DLL's). This worked on my Cygwin installation also: -- gcc hello.c -I/usr/include/python2.4/ -L/usr/lib/python2.4/config/ -lpython2.4 -shared -o hel

Re: Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Jason Tishler
Lars, On Thu, May 04, 2006 at 03:50:13AM -0700, Lars wrote: > I have problems building a simple handcoded C-extension (hello.c) with > Cygwin and gcc3.4.4. I hope somebody has encountered the same problem > before, and has some advice. > > [snip] The following works for me: $ gcc -shared -I

Problem building extension under Cygwin (ImportError: Bad address)

2006-05-04 Thread Lars
Hi, I have problems building a simple handcoded C-extension (hello.c) with Cygwin and gcc3.4.4. I hope somebody has encountered the same problem before, and has some advice. The extension works just fine with Linux: gcc -c hello.c -I/usr/local/include/python2.4/ ld -shared hello.o -o hello.so -L