Leonardo Weiss Chaves wrote:
> Hi Pedro,
> 
> I am able to compile the '"normal" libtool 
> (http://www.gnu.org/software/libtool/) with both mingw32ce and cegcc, but 
> when I run jamvm's configure I get the following with both minge32ce and 
> cegcc:
> 
> configure:20943: arm-wince-mingw32ce-gcc -o conftest.exe -g -O2   conftest.c 
> -ldl  -lm -lpthread  >&5
> /tmp/cc0m5geq.o: In function `main':
> /cec/homes/d046460/CeGCC/jamvm-1.4.5/conftest.c:42: undefined reference to 
> `dlopen'
> collect2: ld returned 1 exit status
> 
> Any ideas?
> 


This is configure looking for dlopen using a link test.  It is
normal for it to fail, as there is no dlopen in Windows,
unless it is implemented in that -ldl lib that is passed on the link
line.

Does the configure stop there?  Strange to be using libltdl, and still
using dlopen directly.  Looks like you'll need to hack a bit the 
configure.[in|ac] file in jamwm, and look in the sources for dlopen
usages and port them to either libltdl or LoadLibrary.

Cheers,
Pedro Alves


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to