From b83e67238bf84c5780f9d27c87cf30342099b291 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Thu, 24 Mar 2022 14:23:07 +0000 Subject: Enable -static-openmp for newer NDK support Android NDKs >= r21 need the '-static-openmp' flag enabled when using openmp. The check on the NDK version is performed by querying the compiler binary's clang version. NDK versions <= r20 use clang 8 and below. Versions >= r21 use clang 9 and above Resolves: COMPMID-5052 Signed-off-by: Giorgio Arena Change-Id: I910f8d7a0a59866c06b16c1a856ea877bcbd7ad6 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7344 Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins (cherry picked from commit 444b43a55bab37fa6dc8628c6283e54e422db3ad) --- SConstruct | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 0f3397278f..fedf856b75 100644 --- a/SConstruct +++ b/SConstruct @@ -25,8 +25,7 @@ import SCons import json import os -import subprocess -import sys +from subprocess import check_output def version_at_least(version, required): @@ -234,7 +233,7 @@ if 'clang++' in cpp_compiler: elif 'armclang' in cpp_compiler: pass elif not 'windows' in env['os']: - env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel','-Wno-misleading-indentation']) + env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel','-Wno-misleading-indentation']) if cpp_compiler == 'g++': # Don't strip comments that could include markers @@ -369,9 +368,9 @@ env['RANLIB'] = prefix + "ranlib" if not GetOption("help"): try: if env['os'] == 'windows': - compiler_ver = subprocess.check_output("clang++ -dumpversion").decode().strip() + compiler_ver = check_output("clang++ -dumpversion").decode().strip() else: - compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).decode().strip() + compiler_ver = check_output(env['CXX'].split() + ["-dumpversion"]).decode().strip() except OSError: print("ERROR: Compiler '%s' not found" % env['CXX']) Exit(1) @@ -395,6 +394,13 @@ if not GetOption("help"): if not version_at_least(compiler_ver, '7.0.0') and env['os'] == 'bare_metal': env.Append(LINKFLAGS = ['-fstack-protector-strong']) + # For NDK >= r21, clang 9 or above is used + if env['os'] == 'android' and version_at_least(compiler_ver, '9.0.0'): + env['ndk_above_r21'] = True + + if env['openmp']: + env.Append(LINKFLAGS = ['-static-openmp']) + if env['high_priority'] and env['build_config']: print("The high priority library cannot be built in conjunction with a user-specified build configuration") Exit(1) -- cgit v1.2.1