aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-11-18 16:22:16 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-12-07 15:52:16 +0000
commite5a9ad8c81c9cf245011839fa373f3603d719ba8 (patch)
tree70058cd9a6e6ba3d3a83b252ebbfaf2ef3546d30 /SConstruct
parent7b48166b37d30dc0d651e5f366a691b38a0c8006 (diff)
downloadComputeLibrary-e5a9ad8c81c9cf245011839fa373f3603d719ba8.tar.gz
COMPMID-3869: Update Sconstruct to support SVE/SVE2
Modifying scons to build with SVE/SVE2 Updating the documentation with examples Change-Id: I80875206599d5444b9c21ac75c4a8e4efd30d8b5 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4629 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct17
1 files changed, 12 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 395fb5e59d..e9ba496afb 100644
--- a/SConstruct
+++ b/SConstruct
@@ -43,8 +43,8 @@ vars.AddVariables(
BoolVariable("asserts", "Enable asserts (this flag is forced to 1 for debug=1)", False),
BoolVariable("logging", "Logging (this flag is forced to 1 for debug=1)", False),
EnumVariable("arch", "Target Architecture", "armv7a",
- allowed_values=("armv7a", "arm64-v8a", "arm64-v8.2-a", "arm64-v8.2-a-sve", "x86_32", "x86_64",
- "armv8a", "armv8.2-a", "armv8.2-a-sve", "armv8.6-a", "armv8.6-a-sve", "x86")),
+ allowed_values=("armv7a", "arm64-v8a", "arm64-v8.2-a", "arm64-v8.2-a-sve", "arm64-v8.2-a-sve2", "x86_32", "x86_64",
+ "armv8a", "armv8.2-a", "armv8.2-a-sve", "armv8.6-a", "armv8.6-a-sve", "armv8.6-a-sve2", "x86")),
EnumVariable("estate", "Execution State", "auto", allowed_values=("auto", "32", "64")),
EnumVariable("os", "Target OS", "linux", allowed_values=("linux", "android", "tizen", "bare_metal")),
EnumVariable("build", "Build type", "cross_compile", allowed_values=("native", "cross_compile", "embed_only")),
@@ -72,7 +72,8 @@ vars.AddVariables(
("compiler_prefix", "Override the compiler prefix", ""),
("extra_cxx_flags", "Extra CXX flags to be appended to the build command", ""),
("extra_link_flags", "Extra LD flags to be appended to the build command", ""),
- ("compiler_cache", "Command to prefix to the C and C++ compiler (e.g ccache)", "")
+ ("compiler_cache", "Command to prefix to the C and C++ compiler (e.g ccache)", ""),
+ ("specs_file", "Specs file to use (e.g. rdimon.specs)", "")
)
env = Environment(platform="posix", variables=vars, ENV = os.environ)
@@ -202,7 +203,9 @@ if 'v7a' in env['arch']:
else:
env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
elif 'v8' in env['arch']:
- if 'sve' in env['arch']:
+ if 'sve2' in env['arch']:
+ env.Append(CXXFLAGS = ['-march=armv8.2-a+sve2+fp16+dotprod'])
+ elif 'sve' in env['arch']:
env.Append(CXXFLAGS = ['-march=armv8.2-a+sve+fp16+dotprod'])
elif 'v8.2-a' in env['arch']:
env.Append(CXXFLAGS = ['-march=armv8.2-a+fp16']) # explicitly enable fp16 extension otherwise __ARM_FEATURE_FP16_VECTOR_ARITHMETIC is undefined
@@ -312,13 +315,17 @@ if env['os'] == 'android':
env.Append(LINKFLAGS = ['-pie', '-static-libstdc++', '-ldl'])
elif env['os'] == 'bare_metal':
env.Append(LINKFLAGS = ['-static'])
- env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
env.Append(CXXFLAGS = ['-fPIC'])
+ if env['specs_file'] == "":
+ env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
env.Append(CPPDEFINES = ['NO_MULTI_THREADING'])
env.Append(CPPDEFINES = ['BARE_METAL'])
if env['os'] == 'linux' and env['arch'] == 'armv7a':
env.Append(CXXFLAGS = [ '-Wno-psabi' ])
+if env['specs_file'] != "":
+ env.Append(LINKFLAGS = ['-specs='+env['specs_file']])
+
if env['opencl']:
if env['os'] in ['bare_metal'] or env['standalone']:
print("Cannot link OpenCL statically, which is required for bare metal / standalone builds")