We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca1d39 commit 9256f9fCopy full SHA for 9256f9f
crypto/CMakeLists.txt
@@ -186,6 +186,8 @@ endif()
186
187
if(HOST_X86_64)
188
set(CRYPTO_SRC ${CRYPTO_SRC} arch/amd64/crypto_cpu_caps.c)
189
+if(HOST_I386)
190
+ set(CRYPTO_SRC ${CRYPTO_SRC} arch/i386/crypto_cpu_caps.c)
191
endif()
192
193
set(
crypto/Makefile.am
@@ -205,6 +205,9 @@ endif
205
if HOST_X86_64
206
libcrypto_la_SOURCES += arch/amd64/crypto_cpu_caps.c
207
endif
208
+if HOST_I386
209
+libcrypto_la_SOURCES += arch/i386/crypto_cpu_caps.c
210
+endif
211
212
libcrypto_la_SOURCES += cpt_err.c
213
libcrypto_la_SOURCES += cryptlib.c
0 commit comments