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@google.com>2016-09-27 23:30:22 +0300
committerAdam Langley <agl@google.com>2016-09-27 23:42:07 +0300
commit9f16ce1ea83e75dd68251804824d6fa7d028865d (patch)
tree169df66f238cbfe0e9ce85816435ff60d1354ce2
parentfdd10998e1db111d43dedcd8662ecd5f6287c4ab (diff)
Teach generate_build_files.py about ppc64le.
Change-Id: Ia535741caa914072f31beeb02ad1d26f7ad692b9 Reviewed-on: https://boringssl-review.googlesource.com/11324 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com>
-rw-r--r--util/generate_build_files.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/generate_build_files.py b/util/generate_build_files.py
index 92a15074..e8b484e9 100644
--- a/util/generate_build_files.py
+++ b/util/generate_build_files.py
@@ -26,6 +26,7 @@ import json
OS_ARCH_COMBOS = [
('linux', 'arm', 'linux32', [], 'S'),
('linux', 'aarch64', 'linux64', [], 'S'),
+ ('linux', 'ppc64le', 'ppc64le', [], 'S'),
('linux', 'x86', 'elf', ['-fPIC', '-DOPENSSL_IA32_SSE2'], 'S'),
('linux', 'x86_64', 'elf', [], 'S'),
('mac', 'x86', 'macosx', ['-fPIC', '-DOPENSSL_IA32_SSE2'], 'S'),
@@ -586,6 +587,8 @@ def ArchForAsmFilename(filename):
return ['aarch64']
elif 'arm' in filename:
return ['arm']
+ elif 'ppc' in filename:
+ return ['ppc64le']
else:
raise ValueError('Unknown arch for asm filename: ' + filename)