padlock: generate assembler source for static libraries too
authorRichard Levitte <levitte@openssl.org>
Tue, 5 Mar 2019 17:38:16 +0000 (18:38 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 5 Mar 2019 19:53:15 +0000 (20:53 +0100)
The GENERATE lines for generating the padlock assembler source were
wrongly placed in such a way that they only applied to the shared
library build.

[extended tests]

Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/8412)

engines/build.info

index e5001c452cbdd2c35bd07939e47922f3242cfc1e..16907da50af45f56d9e71fea33faee896da53ee3 100644 (file)
@@ -20,9 +20,6 @@ IF[{- !$disabled{"engine"} -}]
       SOURCE[padlock]=e_padlock.c {- $target{padlock_asm_src} -}
       DEPEND[padlock]=../libcrypto
       INCLUDE[padlock]=../include
-      GENERATE[e_padlock-x86.s]=asm/e_padlock-x86.pl \
-        $(PERLASM_SCHEME) $(LIB_CFLAGS) $(LIB_CPPFLAGS) $(PROCESSOR)
-      GENERATE[e_padlock-x86_64.s]=asm/e_padlock-x86_64.pl $(PERLASM_SCHEME)
       IF[{- defined $target{shared_defflag} -}]
         SHARED_SOURCE[padlock]=padlock.ld
         GENERATE[padlock.ld]=../util/engines.num
@@ -75,4 +72,7 @@ IF[{- !$disabled{"engine"} -}]
       GENERATE[ossltest.ld]=../util/engines.num
     ENDIF
   ENDIF
+  GENERATE[e_padlock-x86.s]=asm/e_padlock-x86.pl \
+    $(PERLASM_SCHEME) $(LIB_CFLAGS) $(LIB_CPPFLAGS) $(PROCESSOR)
+  GENERATE[e_padlock-x86_64.s]=asm/e_padlock-x86_64.pl $(PERLASM_SCHEME)
 ENDIF