Kees Vonk 7249 24549 <[EMAIL PROTECTED]> wrote:
> I have just compiled opensll on HP-UX 10.20.
>
<snip>
>
> ucomp :
> Warning at line 0 : Do not use optimization levels higher than 2 to
> generate a shared library if a user of that library may redefine a
> routine within that library (8006)
>
> [ ... and then everything seems to hang and ucomp takes up about 90% CPU
> ... ]
+O4 enables link time global optimizations over the whole executable, beyond
the file level optimization that is done during compilation. That
global optimization takes a long long time on a library with this many
functions in it, which is why your make seemed to hang. Be patient and
it'll finish eventually.
The global optimizations include automatic inlining of functions, which
isn't always safe but is safe in this case. The warnings are just the
linker's way of reminding you to think about it. Ignore them.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]