Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-05-16 01:35:28 +0300
committerAdam Langley <agl@google.com>2015-05-16 01:37:49 +0300
commit3dacff94dcd15477a819f230b801934bc17def9d (patch)
tree5f2edf5b922d2ff41138308fd89d2055e7611def /crypto/bn/CMakeLists.txt
parent966003273dc1a8b92f376aefa81232f14eecde8a (diff)
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 <agl@google.com>
Diffstat (limited to 'crypto/bn/CMakeLists.txt')
-rw-r--r--crypto/bn/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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