Ian Grimwood <[EMAIL PROTECTED]> said:
>       Ok I solved my error 10 problem.... I edited the Top-level makefile and
> changed bn_asm from the default C varient to the HPUX varient... solved
> that problem... now for the new one...
> ...
> collect2: ld returned 1 exit status    
> /usr/ccs/bin/ld: Unsatisfied symbols:  
>    bn_div_words (code)                 
>    bn_add_words (code)                 
>    bn_sub_words (code)                 
>    bn_mul_comba4 (code)                
>    bn_mul_comba8 (code)                
>    bn_sqr_comba4 (code)                
>    bn_sqr_comba8 (code)                
> *** Error exit code 1

pa-risc*.s are out of date and don't contain the functions that are coming
up unresolved.  You need to keep using bn_asm.o and figure out the error 10
problem.

If error 10 means errno 10, that's ECHILD which would mean a problem spawning
a child process.  You might try compiling bn_asm.c with gcc using the same
command line that the make does plus "-v", to make it show what commands it's
running or trying to run when it dies.

You could also try updating to the latest gcc if you're not already there, or
turning down the optimization.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to