Re: OpenSSL asm optimizations

2000-04-27 Thread Peter Jeremy
On Fri, 21 Apr 2000, Kris Kennaway wrote: OpenSSL includes asm code for several platforms to speed up various operations. Currently we don't build any of this - the attached patch turns on asm code for Pentiums and above (it relies on an uncommitted patch to sys.mk which defined MACHINE_CPU

Re: OpenSSL asm optimizations

2000-04-24 Thread David O'Brien
On Fri, Apr 21, 2000 at 07:28:28PM -0700, Kris Kennaway wrote: patch to sys.mk which defined MACHINE_CPU ?= i386). Set MACHINE_CPU to "i586" or "i686" (both are actually identical at present) and rebuild. Please also support "k5" and "k6". -- -- David([EMAIL PROTECTED]) To

Re: OpenSSL asm optimizations

2000-04-24 Thread Kris Kennaway
On Mon, 24 Apr 2000, David O'Brien wrote: On Fri, Apr 21, 2000 at 07:28:28PM -0700, Kris Kennaway wrote: patch to sys.mk which defined MACHINE_CPU ?= i386). Set MACHINE_CPU to "i586" or "i686" (both are actually identical at present) and rebuild. Please also support "k5" and "k6".

Re: OpenSSL asm optimizations

2000-04-21 Thread Matthew N. Dodd
Can these be turned on at runtime? My concern is that build systems that compile for other machines not generate code dependent on the machine thats building the code. On Fri, 21 Apr 2000, Kris Kennaway wrote: OpenSSL includes asm code for several platforms to speed up various operations.

Re: OpenSSL asm optimizations

2000-04-21 Thread Kris Kennaway
On Sat, 22 Apr 2000, Matthew N. Dodd wrote: Can these be turned on at runtime? My concern is that build systems that compile for other machines not generate code dependent on the machine thats building the code. I probably meant TARGET_CPU, but that's easily taken care of. Kris In