Browse Source

Preventing ppc64le files from being generated for Android.

Change-Id: Iedf30f2711649e55fccfb77031c8617fca055ce7
Reviewed-on: https://boringssl-review.googlesource.com/11503
Reviewed-by: David Benjamin <davidben@google.com>
kris/onging/CECPQ3_patch15
Steven Valdez 8 years ago
committed by David Benjamin
parent
commit
93d242bdea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/generate_build_files.py

+ 1
- 1
util/generate_build_files.py View File

@@ -99,7 +99,7 @@ class Android(object):
blueprint.write(' target: {\n')

for ((osname, arch), asm_files) in asm_outputs:
if osname != 'linux':
if osname != 'linux' or arch == 'ppc64le':
continue
if arch == 'aarch64':
arch = 'arm64'


Loading…
Cancel
Save