You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Jeff Trawick <tr...@gmail.com> on 2009/12/07 18:58:02 UTC

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

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 --...