On Wed, 16 Jun 2010, Allin Cottrell wrote:
On Wed, 16 Jun 2010, denis joubert wrote:
> I launched the build process with the latest CVS.
> unfortunatly, it didn't worked with shared modules.
> So i sent you the log again :-)
Thanks! We're still hung up on cygwin's inability to create a
shared libgretl (that is what is subsequently making it impossible
to build the gretl plugins as shared modules)...
Can you try running the following shell commands in the gretl
"lib" directory? They are explicit commands to create a dll and
perhaps if/when they fail we may get some more information about
what is wrong:
gcc -shared -o libgretl-1.0.dll \
-Wl,--out-implib=libgretl-1.0.dll.a \
-Wl,--export-all-symbols \
-Wl,--enable-auto-import \
-Wl,--whole-archive .libs/libgretl-1.0.a \
-Wl,--no-whole-archive \
-llapack -lblas -lgfortran -lm -ldl -lz \
-lxml2 -lz -liconv -lm -lglib-2.0 -lintl -liconv \
-lgmp -lfftw3 -lm
Allin Cottrell