You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Pete RT <pr...@yahoo.com> on 2009/12/07 18:35:01 UTC

/usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module

I am receiving the following error when I try to run Apache HTTP server
v1.3.41 on HP-Unix 11:

/usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module
'APACHE_DST/libexec/mod_status.so'.
Syntax error on line 211 of APACHE_DST/conf/httpd.conf:
Cannot load APACHE_DST/libexec/mod_status.so into server: Unresolved
external
APACHE_DST/bin/apachectl start: httpd could not be started


The system details are as follows:
$> uname -aimnrsv
HP-UX hpux03 B.11.31 U ia64 unlimited-user license


gcc version 3.4.4 was used to build Apache


Any help would be greatly appreciated!
-- 
View this message in context: http://old.nabble.com/-usr-lib-hpux64-dld.so%3A-Unsatisfied-code-symbol-%27__divsf3%27-in-load-module-tp26680854p26680854.html
Sent from the Apache HTTP Server - Dev mailing list archive at Nabble.com.


Re: /usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module

Posted by Jeff Trawick <tr...@gmail.com>.
On Mon, Dec 7, 2009 at 12:53 PM, William A. Rowe Jr.
<wr...@rowe-clan.net> wrote:
> Pete RT wrote:
>> I am receiving the following error when I try to run Apache HTTP server
>> v1.3.41 on HP-Unix 11:
>>
>> /usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module
>> 'APACHE_DST/libexec/mod_status.so'.
>> Syntax error on line 211 of APACHE_DST/conf/httpd.conf:
>> Cannot load APACHE_DST/libexec/mod_status.so into server: Unresolved
>> external
>> APACHE_DST/bin/apachectl start: httpd could not be started
>
> mod_status does double precision math.  Try linking with -lm?

could be the libgcc issue

if there's only a dynamic libgcc.so, try loading it via LoadFile

if there's only the static libgcc.a, try referencing it at build time like this

EXTRA_LDFLAGS_SHLIB='-L/directory/containing/libgcc.a -lgcc' ./configure --...

Re: /usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module

Posted by "William A. Rowe Jr." <wr...@rowe-clan.net>.
Pete RT wrote:
> I am receiving the following error when I try to run Apache HTTP server
> v1.3.41 on HP-Unix 11:
> 
> /usr/lib/hpux64/dld.so: Unsatisfied code symbol '__divsf3' in load module
> 'APACHE_DST/libexec/mod_status.so'.
> Syntax error on line 211 of APACHE_DST/conf/httpd.conf:
> Cannot load APACHE_DST/libexec/mod_status.so into server: Unresolved
> external
> APACHE_DST/bin/apachectl start: httpd could not be started

mod_status does double precision math.  Try linking with -lm?