blob: 9190d490d72f74dba2178bfe7a7138d3a8af9d98 [file] [log] [blame]
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +00001# -*- coding: utf-8 -*-
2
3# Copyright (c) 2016-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01004#
5# SPDX-License-Identifier: MIT
6#
7# Permission is hereby granted, free of charge, to any person obtaining a copy
8# of this software and associated documentation files (the "Software"), to
9# deal in the Software without restriction, including without limitation the
10# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
11# sell copies of the Software, and to permit persons to whom the Software is
12# furnished to do so, subject to the following conditions:
13#
14# The above copyright notice and this permission notice shall be included in all
15# copies or substantial portions of the Software.
16#
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23# SOFTWARE.
24
25import SCons
26import os
27import subprocess
28
29def version_at_least(version, required):
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
Michalis Spyroucfac3052020-10-14 12:06:28 +010031 version_list = version.split('.')
32 required_list = required.split('.')
33 end = min(len(version_list), len(required_list))
34 for i in range(0, end):
35 if int(version_list[i]) < int(required_list[i]):
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036 return False
Michalis Spyroucfac3052020-10-14 12:06:28 +010037 elif int(version_list[i]) > int(required_list[i]):
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038 return True
39
40 return True
41
42vars = Variables("scons")
43vars.AddVariables(
44 BoolVariable("debug", "Debug", False),
45 BoolVariable("asserts", "Enable asserts (this flag is forced to 1 for debug=1)", False),
Georgios Pinitas3faea252017-10-30 14:13:50 +000046 BoolVariable("logging", "Logging (this flag is forced to 1 for debug=1)", False),
Georgios Pinitasf2cdce32019-12-09 18:35:57 +000047 EnumVariable("arch", "Target Architecture", "armv7a",
Manuel Bottinie5a9ad82020-11-18 16:22:16 +000048 allowed_values=("armv7a", "arm64-v8a", "arm64-v8.2-a", "arm64-v8.2-a-sve", "arm64-v8.2-a-sve2", "x86_32", "x86_64",
Sang-Hoon Park50e98bb2021-01-14 14:54:14 +000049 "armv8a", "armv8.2-a", "armv8.2-a-sve", "armv8.6-a", "armv8.6-a-sve", "armv8.6-a-sve2", "armv8r64", "x86")),
Georgios Pinitasf2cdce32019-12-09 18:35:57 +000050 EnumVariable("estate", "Execution State", "auto", allowed_values=("auto", "32", "64")),
Georgios Pinitas45514032020-12-30 00:03:09 +000051 EnumVariable("os", "Target OS", "linux", allowed_values=("linux", "android", "tizen", "macos", "bare_metal")),
Anthony Barbier6a3daf12018-02-19 17:24:27 +000052 EnumVariable("build", "Build type", "cross_compile", allowed_values=("native", "cross_compile", "embed_only")),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 BoolVariable("examples", "Build example programs", True),
SiCong Li8b4c7302019-09-19 12:18:15 +010054 BoolVariable("gemm_tuner", "Build gemm_tuner programs", True),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 BoolVariable("Werror", "Enable/disable the -Werror compilation flag", True),
Pablo Telloc6cb35a2017-06-21 15:39:47 +010056 BoolVariable("standalone", "Builds the tests as standalone executables, links statically with libgcc, libstdc++ and libarm_compute", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 BoolVariable("opencl", "Enable OpenCL support", True),
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000058 BoolVariable("neon", "Enable Arm® Neon™ support", False),
Anthony Barbiercc0a80b2017-12-15 11:37:29 +000059 BoolVariable("embed_kernels", "Embed OpenCL kernels and OpenGL ES compute shaders in library binary", True),
Georgios Pinitasea857272021-01-22 05:47:37 +000060 BoolVariable("compress_kernels", "Compress embedded OpenCL kernels in library binary. Note embed_kernels should be enabled", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061 BoolVariable("set_soname", "Set the library's soname and shlibversion (requires SCons 2.4 or above)", False),
Anthony Barbierb4670212018-05-18 16:55:39 +010062 BoolVariable("tracing", "Enable runtime tracing", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063 BoolVariable("openmp", "Enable OpenMP backend", False),
64 BoolVariable("cppthreads", "Enable C++11 threads backend", True),
65 PathVariable("build_dir", "Specify sub-folder for the build", ".", PathVariable.PathAccept),
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000066 PathVariable("install_dir", "Specify sub-folder for the install", "", PathVariable.PathAccept),
Michalis Spyrou323ce0f2018-11-30 16:30:43 +000067 BoolVariable("exceptions", "Enable/disable C++ exception support", True),
Michalis Spyrou748a7c82019-10-07 13:00:44 +010068 PathVariable("linker_script", "Use an external linker script", "", PathVariable.PathAccept),
Michele Di Giorgio72610dc2020-11-18 15:29:08 +000069 PathVariable("external_tests_dir", "Add examples, benchmarks and tests to the tests suite", "", PathVariable.PathAccept),
Georgios Pinitas49c6ced2020-09-21 17:16:09 +010070 ListVariable("custom_options", "Custom options that can be used to turn on/off features", "none", ["disable_mmla_fp"]),
Michalis Spyroua3c9a3b2020-12-08 21:02:16 +000071 ListVariable("data_type_support", "Enable a list of data types to support", "all", ["qasymm8", "qasymm8_signed", "qsymm16", "fp16", "fp32", "integer"]),
Sheri Zhang79144a62021-02-08 17:43:04 +000072 ListVariable("data_layout_support", "Enable a list of data layout to support", "all", ["nhwc", "nchw"]),
Anthony Barbier149de5b2018-12-06 10:27:37 +000073 ("toolchain_prefix", "Override the toolchain prefix", ""),
alered01d8872c12020-02-10 11:29:45 +000074 ("compiler_prefix", "Override the compiler prefix", ""),
Anthony Barbier7390e052018-03-13 09:29:41 +000075 ("extra_cxx_flags", "Extra CXX flags to be appended to the build command", ""),
Georgios Pinitas421405b2018-10-26 19:05:32 +010076 ("extra_link_flags", "Extra LD flags to be appended to the build command", ""),
Manuel Bottinie5a9ad82020-11-18 16:22:16 +000077 ("compiler_cache", "Command to prefix to the C and C++ compiler (e.g ccache)", ""),
78 ("specs_file", "Specs file to use (e.g. rdimon.specs)", "")
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079)
80
81env = Environment(platform="posix", variables=vars, ENV = os.environ)
Anthony Barbiere8a55df2018-10-26 09:05:01 +010082build_path = env['build_dir']
83# If build_dir is a relative path then add a #build/ prefix:
84if not env['build_dir'].startswith('/'):
85 SConsignFile('build/%s/.scons' % build_path)
86 build_path = "#build/%s" % build_path
87else:
88 SConsignFile('%s/.scons' % build_path)
89
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000090install_path = env['install_dir']
91#If the install_dir is a relative path then assume it's from inside build_dir
92if not env['install_dir'].startswith('/') and install_path != "":
93 install_path = "%s/%s" % (build_path, install_path)
94
Anthony Barbiere8a55df2018-10-26 09:05:01 +010095env.Append(LIBPATH = [build_path])
Anthony Barbier6a3daf12018-02-19 17:24:27 +000096Export('env')
97Export('vars')
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
Anthony Barbier01bbd5f2018-11-01 15:10:51 +000099def install_lib( lib ):
100 # If there is no install folder, then there is nothing to do:
101 if install_path == "":
102 return lib
103 return env.Install( "%s/lib/" % install_path, lib)
104def install_bin( bin ):
105 # If there is no install folder, then there is nothing to do:
106 if install_path == "":
107 return bin
108 return env.Install( "%s/bin/" % install_path, bin)
109def install_include( inc ):
110 if install_path == "":
111 return inc
112 return env.Install( "%s/include/" % install_path, inc)
113
114Export('install_lib')
115Export('install_bin')
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116
117Help(vars.GenerateHelpText(env))
118
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100119if env['linker_script'] and env['os'] != 'bare_metal':
120 print("Linker script is only supported for bare_metal builds")
121 Exit(1)
122
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000123if env['build'] == "embed_only":
Anthony Barbiere8a55df2018-10-26 09:05:01 +0100124 SConscript('./SConscript', variant_dir=build_path, duplicate=0)
Anthony Barbier6a3daf12018-02-19 17:24:27 +0000125 Return()
126
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127if env['neon'] and 'x86' in env['arch']:
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000128 print("Cannot compile Arm® Neon™ for x86")
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 Exit(1)
130
131if env['set_soname'] and not version_at_least(SCons.__version__, "2.4"):
ggardet767c9f72018-06-29 17:01:01 +0200132 print("Setting the library's SONAME / SHLIBVERSION requires SCons 2.4 or above")
133 print("Update your version of SCons or use set_soname=0")
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100134 Exit(1)
135
136if env['os'] == 'bare_metal':
137 if env['cppthreads'] or env['openmp']:
138 print("ERROR: OpenMP and C++11 threads not supported in bare_metal. Use cppthreads=0 openmp=0")
139 Exit(1)
140
Georgios Pinitasea857272021-01-22 05:47:37 +0000141if env['opencl'] and env['embed_kernels'] and env['compress_kernels'] and env['os'] not in ['android']:
142 print("Compressed kernels are supported only for android builds")
143 Exit(1)
144
Michalis Spyrou323ce0f2018-11-30 16:30:43 +0000145if not env['exceptions']:
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000146 if env['opencl']:
147 print("ERROR: OpenCL is not supported when building without exceptions. Use opencl=0")
Michalis Spyrou323ce0f2018-11-30 16:30:43 +0000148 Exit(1)
149
150 env.Append(CPPDEFINES = ['ARM_COMPUTE_EXCEPTIONS_DISABLED'])
151 env.Append(CXXFLAGS = ['-fno-exceptions'])
152
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100153env.Append(CXXFLAGS = ['-Wall','-DARCH_ARM',
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100154 '-Wextra','-pedantic','-Wdisabled-optimization','-Wformat=2',
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155 '-Winit-self','-Wstrict-overflow=2','-Wswitch-default',
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000156 '-std=c++14','-Woverloaded-virtual', '-Wformat-security',
Michalis Spyroufae513c2019-10-16 17:41:33 +0100157 '-Wctor-dtor-privacy','-Wsign-promo','-Weffc++','-Wno-overlength-strings'])
Isabella Gottardib28f29d2017-11-09 17:05:07 +0000158
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100159env.Append(CPPDEFINES = ['_GLIBCXX_USE_NANOSLEEP'])
160
Georgios Pinitas45514032020-12-30 00:03:09 +0000161default_cpp_compiler = 'g++' if env['os'] not in ['android', 'macos'] else 'clang++'
162default_c_compiler = 'gcc' if env['os'] not in ['android', 'macos'] else 'clang'
Anthony Barbiera026e982018-01-18 10:57:52 +0000163cpp_compiler = os.environ.get('CXX', default_cpp_compiler)
164c_compiler = os.environ.get('CC', default_c_compiler)
165
Anthony Barbierdd669372018-03-01 17:08:54 +0000166if env['os'] == 'android' and ( 'clang++' not in cpp_compiler or 'clang' not in c_compiler ):
ggardet767c9f72018-06-29 17:01:01 +0200167 print( "WARNING: Only clang is officially supported to build the Compute Library for Android")
Anthony Barbiera026e982018-01-18 10:57:52 +0000168
Anthony Barbierdd669372018-03-01 17:08:54 +0000169if 'clang++' in cpp_compiler:
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100170 env.Append(CXXFLAGS = ['-Wno-vla-extension'])
Georgios Pinitase874ef92019-09-09 17:40:33 +0100171elif 'armclang' in cpp_compiler:
172 pass
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100173else:
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100174 env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175
SiCongLi410e21e2020-12-11 15:07:53 +0000176if cpp_compiler == 'g++':
177 # Don't strip comments that could include markers
178 env.Append(CXXFLAGS = ['-C'])
179
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100180if env['cppthreads']:
181 env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
182
183if env['openmp']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 env.Append(CPPDEFINES = [('ARM_COMPUTE_OPENMP_SCHEDULER', 1)])
185 env.Append(CXXFLAGS = ['-fopenmp'])
186 env.Append(LINKFLAGS = ['-fopenmp'])
187
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000188# Validate and define state
189if env['estate'] == 'auto':
190 if 'v7a' in env['arch']:
191 env['estate'] = '32'
192 else:
193 env['estate'] = '64'
194
195# Map legacy arch
196if 'arm64' in env['arch']:
197 env['estate'] = '64'
198
199if 'v7a' in env['estate'] and env['estate'] == '64':
200 print("ERROR: armv7a architecture has only 32-bit execution state")
201 Exit(1)
202
Georgios Pinitase874ef92019-09-09 17:40:33 +0100203# Add architecture specific flags
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204prefix = ""
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000205if 'v7a' in env['arch']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206 env.Append(CXXFLAGS = ['-march=armv7-a', '-mthumb', '-mfpu=neon'])
Inki Dae51a95582020-03-23 08:29:02 +0900207 if env['os'] == 'android' or env['os'] == 'tizen':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100208 env.Append(CXXFLAGS = ['-mfloat-abi=softfp'])
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000209 else:
210 env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
Georgios Pinitas94672fb2020-01-22 18:36:27 +0000211elif 'v8' in env['arch']:
Manuel Bottinie5a9ad82020-11-18 16:22:16 +0000212 if 'sve2' in env['arch']:
213 env.Append(CXXFLAGS = ['-march=armv8.2-a+sve2+fp16+dotprod'])
Georgios Pinitas045d33c2020-12-07 20:52:55 +0000214 env.Append(CPPDEFINES = ['SVE2'])
Manuel Bottinie5a9ad82020-11-18 16:22:16 +0000215 elif 'sve' in env['arch']:
Georgios Pinitas421405b2018-10-26 19:05:32 +0100216 env.Append(CXXFLAGS = ['-march=armv8.2-a+sve+fp16+dotprod'])
Sang-Hoon Park50e98bb2021-01-14 14:54:14 +0000217 elif 'armv8r64' in env['arch']:
218 env.Append(CXXFLAGS = ['-march=armv8.4-a'])
Georgios Pinitasdeb5b772020-12-07 20:39:51 +0000219 elif 'v8.' in env['arch']:
Georgios Pinitas421405b2018-10-26 19:05:32 +0100220 env.Append(CXXFLAGS = ['-march=armv8.2-a+fp16']) # explicitly enable fp16 extension otherwise __ARM_FEATURE_FP16_VECTOR_ARITHMETIC is undefined
Georgios Pinitas94672fb2020-01-22 18:36:27 +0000221 else:
222 env.Append(CXXFLAGS = ['-march=armv8-a'])
223
224 if 'v8.6-a' in env['arch']:
Georgios Pinitas49c6ced2020-09-21 17:16:09 +0100225 env.Append(CPPDEFINES = ['MMLA_INT8', 'V8P6', 'V8P6_BF', 'ARM_COMPUTE_FORCE_BF16'])
226 if "disable_mmla_fp" not in env['custom_options']:
227 env.Append(CPPDEFINES = ['MMLA_FP32'])
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000228elif 'x86' in env['arch']:
229 if env['estate'] == '32':
230 env.Append(CCFLAGS = ['-m32'])
231 env.Append(LINKFLAGS = ['-m32'])
232 else:
233 env.Append(CXXFLAGS = ['-fPIC'])
234 env.Append(CCFLAGS = ['-m64'])
235 env.Append(LINKFLAGS = ['-m64'])
236
237# Define toolchain
238prefix = ""
239if 'x86' not in env['arch']:
240 if env['estate'] == '32':
241 if env['os'] == 'linux':
242 prefix = "arm-linux-gnueabihf-" if 'v7' in env['arch'] else "armv8l-linux-gnueabihf-"
243 elif env['os'] == 'bare_metal':
244 prefix = "arm-eabi-"
245 elif env['os'] == 'android':
246 prefix = "arm-linux-androideabi-"
Inki Dae51a95582020-03-23 08:29:02 +0900247 elif env['os'] == 'tizen':
248 prefix = "armv7l-tizen-linux-gnueabi-"
Georgios Pinitasf2cdce32019-12-09 18:35:57 +0000249 elif env['estate'] == '64' and 'v8' in env['arch']:
250 if env['os'] == 'linux':
251 prefix = "aarch64-linux-gnu-"
252 elif env['os'] == 'bare_metal':
253 prefix = "aarch64-elf-"
254 elif env['os'] == 'android':
255 prefix = "aarch64-linux-android-"
Inki Dae51a95582020-03-23 08:29:02 +0900256 elif env['os'] == 'tizen':
257 prefix = "aarch64-tizen-linux-gnu-"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100258
259if env['build'] == 'native':
260 prefix = ""
261
Anthony Barbier149de5b2018-12-06 10:27:37 +0000262if env["toolchain_prefix"] != "":
263 prefix = env["toolchain_prefix"]
264
alered01d8872c12020-02-10 11:29:45 +0000265compiler_prefix = prefix
266if env["compiler_prefix"] != "":
267 compiler_prefix = env["compiler_prefix"]
268
269env['CC'] = env['compiler_cache']+ " " + compiler_prefix + c_compiler
270env['CXX'] = env['compiler_cache']+ " " + compiler_prefix + cpp_compiler
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100271env['LD'] = prefix + "ld"
272env['AS'] = prefix + "as"
273env['AR'] = prefix + "ar"
274env['RANLIB'] = prefix + "ranlib"
275
276if not GetOption("help"):
277 try:
SiCong Li3b9a5642020-10-16 12:10:15 +0100278 compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).decode().strip()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100279 except OSError:
280 print("ERROR: Compiler '%s' not found" % env['CXX'])
281 Exit(1)
282
Georgios Pinitase874ef92019-09-09 17:40:33 +0100283 if 'armclang' in cpp_compiler:
284 pass
285 elif 'clang++' not in cpp_compiler:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100286 if env['arch'] == 'arm64-v8.2-a' and not version_at_least(compiler_ver, '6.2.1'):
ggardet767c9f72018-06-29 17:01:01 +0200287 print("GCC 6.2.1 or newer is required to compile armv8.2-a code")
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100288 Exit(1)
289 elif env['arch'] == 'arm64-v8a' and not version_at_least(compiler_ver, '4.9'):
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +0000290 print("GCC 4.9 or newer is required to compile Arm® Neon™ code for AArch64")
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100291 Exit(1)
292
293 if version_at_least(compiler_ver, '6.1'):
294 env.Append(CXXFLAGS = ['-Wno-ignored-attributes'])
295
296 if compiler_ver == '4.8.3':
297 env.Append(CXXFLAGS = ['-Wno-array-bounds'])
298
Michalis Spyroucfac3052020-10-14 12:06:28 +0100299 if not version_at_least(compiler_ver, '7.0.0') and env['os'] == 'bare_metal':
300 env.Append(LINKFLAGS = ['-fstack-protector-strong'])
301
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100302if env['data_type_support']:
303 if any(i in env['data_type_support'] for i in ['all', 'fp16']):
304 env.Append(CXXFLAGS = ['-DENABLE_FP16_KERNELS'])
305 if any(i in env['data_type_support'] for i in ['all', 'fp32']):
306 env.Append(CXXFLAGS = ['-DENABLE_FP32_KERNELS'])
Michalis Spyrouc4d45552020-10-19 12:41:30 +0100307 if any(i in env['data_type_support'] for i in ['all', 'qasymm8']):
308 env.Append(CXXFLAGS = ['-DENABLE_QASYMM8_KERNELS'])
309 if any(i in env['data_type_support'] for i in ['all', 'qasymm8_signed']):
310 env.Append(CXXFLAGS = ['-DENABLE_QASYMM8_SIGNED_KERNELS'])
311 if any(i in env['data_type_support'] for i in ['all', 'qsymm16']):
312 env.Append(CXXFLAGS = ['-DENABLE_QSYMM16_KERNELS'])
Michalis Spyroua3c9a3b2020-12-08 21:02:16 +0000313 if any(i in env['data_type_support'] for i in ['all', 'integer']):
314 env.Append(CXXFLAGS = ['-DENABLE_INTEGER_KERNELS'])
Georgios Pinitasff4fca02020-10-02 21:00:00 +0100315
Sheri Zhang79144a62021-02-08 17:43:04 +0000316if env['data_layout_support']:
317 if any(i in env['data_layout_support'] for i in ['all', 'nhwc']):
318 env.Append(CXXFLAGS = ['-DENABLE_NHWC_KERNELS'])
319 if any(i in env['data_layout_support'] for i in ['all', 'nchw']):
320 env.Append(CXXFLAGS = ['-DENABLE_NCHW_KERNELS'])
321
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100322if env['standalone']:
323 env.Append(CXXFLAGS = ['-fPIC'])
Anthony Barbier665c89b2018-07-16 11:40:09 +0100324 env.Append(LINKFLAGS = ['-static-libgcc','-static-libstdc++'])
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100325
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100326if env['Werror']:
327 env.Append(CXXFLAGS = ['-Werror'])
328
329if env['os'] == 'android':
330 env.Append(CPPDEFINES = ['ANDROID'])
Michalis Spyrou2d22c3f2020-02-12 14:50:19 +0000331 env.Append(LINKFLAGS = ['-pie', '-static-libstdc++', '-ldl'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100332elif env['os'] == 'bare_metal':
333 env.Append(LINKFLAGS = ['-static'])
334 env.Append(CXXFLAGS = ['-fPIC'])
Manuel Bottinie5a9ad82020-11-18 16:22:16 +0000335 if env['specs_file'] == "":
336 env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100337 env.Append(CPPDEFINES = ['NO_MULTI_THREADING'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100338 env.Append(CPPDEFINES = ['BARE_METAL'])
Manuel Bottini827817e2020-11-19 12:12:06 +0000339if env['os'] == 'linux' and env['arch'] == 'armv7a':
340 env.Append(CXXFLAGS = [ '-Wno-psabi' ])
Giorgio Arenae7254a02021-02-24 12:46:35 +0000341 if not env['debug']:
342 env.Append(CPPDEFINES = ['LINUX_V7_RELEASE'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100343
Manuel Bottinie5a9ad82020-11-18 16:22:16 +0000344if env['specs_file'] != "":
345 env.Append(LINKFLAGS = ['-specs='+env['specs_file']])
346
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000347if env['neon']:
348 env.Append(CPPDEFINES = ['ARM_COMPUTE_CPU_ENABLED'])
349
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100350if env['opencl']:
Georgios Pinitas8a5146f2021-01-12 15:51:07 +0000351 env.Append(CPPDEFINES = ['ARM_COMPUTE_OPENCL_ENABLED'])
Georgios Pinitase6032da2017-10-26 14:13:35 +0100352 if env['os'] in ['bare_metal'] or env['standalone']:
Anthony Barbier5f0124d2018-04-13 14:05:34 +0100353 print("Cannot link OpenCL statically, which is required for bare metal / standalone builds")
354 Exit(1)
355
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100356if env["os"] not in ["android", "bare_metal"] and (env['opencl'] or env['cppthreads']):
357 env.Append(LIBS = ['pthread'])
358
Manuel Bottiniceaa0bf2021-02-16 15:15:19 +0000359if env['opencl']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100360 if env['embed_kernels']:
361 env.Append(CPPDEFINES = ['EMBEDDED_KERNELS'])
Georgios Pinitasea857272021-01-22 05:47:37 +0000362 if env['compress_kernels']:
363 env.Append(CPPDEFINES = ['ARM_COMPUTE_COMPRESSED_KERNELS'])
364 env.Append(LIBS = ['z'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100365
366if env['debug']:
367 env['asserts'] = True
Georgios Pinitas3faea252017-10-30 14:13:50 +0000368 env['logging'] = True
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100369 env.Append(CXXFLAGS = ['-O0','-g','-gdwarf-2'])
370 env.Append(CPPDEFINES = ['ARM_COMPUTE_DEBUG_ENABLED'])
371else:
Ramana Radhakrishnand176d542019-07-04 11:38:45 +0100372 env.Append(CXXFLAGS = ['-O3'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100373
374if env['asserts']:
375 env.Append(CPPDEFINES = ['ARM_COMPUTE_ASSERTS_ENABLED'])
Moritz Pflanzer8b74c782017-09-14 14:33:20 +0100376 env.Append(CXXFLAGS = ['-fstack-protector-strong'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100377
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +0100378if env['logging']:
379 env.Append(CPPDEFINES = ['ARM_COMPUTE_LOGGING_ENABLED'])
380
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100381env.Append(CPPPATH = ['#/include', "#"])
382env.Append(CXXFLAGS = env['extra_cxx_flags'])
Georgios Pinitas421405b2018-10-26 19:05:32 +0100383env.Append(LINKFLAGS = env['extra_link_flags'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100384
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000385Default( install_include("arm_compute"))
Anthony Barbier10565952018-11-15 09:50:06 +0000386Default( install_include("support"))
Michele Di Giorgio6afea902019-04-03 11:40:20 +0100387Default( install_include("utils"))
388for dirname in os.listdir("./include"):
389 Default( install_include("include/%s" % dirname))
Anthony Barbier01bbd5f2018-11-01 15:10:51 +0000390
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100391Export('version_at_least')
392
Anthony Barbiere8a55df2018-10-26 09:05:01 +0100393SConscript('./SConscript', variant_dir=build_path, duplicate=0)
Anthony Barbier6c0348f2017-11-10 18:32:38 +0000394
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100395if env['examples'] and env['exceptions']:
396 if env['os'] == 'bare_metal' and env['arch'] == 'armv7a':
Michalis Spyrou35f35a62019-12-23 11:29:52 +0000397 print("WARNING: Building examples for bare metal and armv7a is not supported. Use examples=0")
398 Return()
Anthony Barbiere8a55df2018-10-26 09:05:01 +0100399 SConscript('./examples/SConscript', variant_dir='%s/examples' % build_path, duplicate=0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100400
Michalis Spyrou748a7c82019-10-07 13:00:44 +0100401if env['exceptions']:
402 if env['os'] == 'bare_metal' and env['arch'] == 'armv7a':
403 print("WARNING: Building tests for bare metal and armv7a is not supported")
404 Return()
Anthony Barbiere8a55df2018-10-26 09:05:01 +0100405 SConscript('./tests/SConscript', variant_dir='%s/tests' % build_path, duplicate=0)