Re: [Tcl9-colibri] [TCLCORE] ANNOUNCE: Colibri version 0.12
Status: Alpha
Brought to you by:
fbonnet
From: Christophe C. <chr...@fr...> - 2011-11-30 17:58:45
|
Hi Frédéric, On Wednesday 30 November 2011 17:52, Frédéric Bonnet wrote: > > Linux/x86 and Windows/x86. It compiles on Linux/x86-64 but the linker spits > a strange error on a missing symbol (oddly enough it compiled just fine on > version 0.11), so I haven't had the opportunity to test it. I have no Win64 > toolchain but given the overall portability of the code it should work OK > (platform-specific code is minimal). If your actual error on Linux/x86-64 is this one: colAlloc.o: could not read symbols: Bad value then the solution is really simple, you just have to add "-fPIC" to the gcc command. This is a requirement for all "so" files now under x86_64 architectures. Please note that on my side it did compile well with the option, and the test thing looked like it ran, thanks to some tweaking on the Makefile due to TCL paths (I do not have ActiveTcl, so hacked to link against my system's Tcl-8.5). Regards, Christophe. |