From 3dacff94dcd15477a819f230b801934bc17def9d Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Fri, 15 May 2015 18:35:28 -0400 Subject: [PATCH] Always include x86_64-gcc.c in the standalone build. Unlike the standalone build, builds generated from util/generate_build_files.py do not exclude x86_64-gcc.c. Match the consumer builds by making the standalone build unconditionally include it. (This would have noticed the missing preprocessor checks in the file.) Change-Id: I8d20f269dea63776320ae636ee1e5339cb85fa30 Reviewed-on: https://boringssl-review.googlesource.com/4761 Reviewed-by: Adam Langley --- crypto/bn/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/CMakeLists.txt b/crypto/bn/CMakeLists.txt index 25663afd..4a33f7e5 100644 --- a/crypto/bn/CMakeLists.txt +++ b/crypto/bn/CMakeLists.txt @@ -4,7 +4,6 @@ if (${ARCH} STREQUAL "x86_64") set( BN_ARCH_SOURCES - asm/x86_64-gcc.c x86_64-mont.${ASM_EXT} x86_64-mont5.${ASM_EXT} rsaz-x86_64.${ASM_EXT} @@ -38,6 +37,7 @@ add_library( OBJECT add.c + asm/x86_64-gcc.c bn.c cmp.c convert.c