blob: 76a5bd00b1ea22ebfab89edcb5191fefc2c32ed5 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001# Copyright (c) 2016, 2017 ARM Limited.
2#
3# SPDX-License-Identifier: MIT
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to
7# deal in the Software without restriction, including without limitation the
8# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9# sell copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in all
13# copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22
23import SCons
24import os
25import subprocess
26
27def version_at_least(version, required):
28 end = min(len(version), len(required))
29
30 for i in range(0, end, 2):
31 if int(version[i]) < int(required[i]):
32 return False
33 elif int(version[i]) > int(required[i]):
34 return True
35
36 return True
37
38vars = Variables("scons")
39vars.AddVariables(
40 BoolVariable("debug", "Debug", False),
41 BoolVariable("asserts", "Enable asserts (this flag is forced to 1 for debug=1)", False),
Georgios Pinitas3faea252017-10-30 14:13:50 +000042 BoolVariable("logging", "Logging (this flag is forced to 1 for debug=1)", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043 EnumVariable("arch", "Target Architecture", "armv7a", allowed_values=("armv7a", "arm64-v8a", "arm64-v8.2-a", "x86_32", "x86_64")),
44 EnumVariable("os", "Target OS", "linux", allowed_values=("linux", "android", "bare_metal")),
45 EnumVariable("build", "Build type", "cross_compile", allowed_values=("native", "cross_compile")),
46 BoolVariable("examples", "Build example programs", True),
47 BoolVariable("Werror", "Enable/disable the -Werror compilation flag", True),
Pablo Telloc6cb35a2017-06-21 15:39:47 +010048 BoolVariable("standalone", "Builds the tests as standalone executables, links statically with libgcc, libstdc++ and libarm_compute", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 BoolVariable("opencl", "Enable OpenCL support", True),
50 BoolVariable("neon", "Enable Neon support", False),
Anthony Barbier7068f992017-10-26 15:23:08 +010051 BoolVariable("gles_compute", "Enable OpenGL ES Compute Shader support", False),
Anthony Barbiercc0a80b2017-12-15 11:37:29 +000052 BoolVariable("embed_kernels", "Embed OpenCL kernels and OpenGL ES compute shaders in library binary", True),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 BoolVariable("set_soname", "Set the library's soname and shlibversion (requires SCons 2.4 or above)", False),
54 BoolVariable("openmp", "Enable OpenMP backend", False),
55 BoolVariable("cppthreads", "Enable C++11 threads backend", True),
56 PathVariable("build_dir", "Specify sub-folder for the build", ".", PathVariable.PathAccept),
Anthony Barbiera4e5e1e2017-10-05 14:55:34 +010057 #FIXME Remove before release (And remove all references to INTERNAL_ONLY)
58 BoolVariable("internal_only", "Enable ARM internal only tests", True),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 ("extra_cxx_flags", "Extra CXX flags to be appended to the build command", "")
60)
61
62env = Environment(platform="posix", variables=vars, ENV = os.environ)
Anthony Barbierb2881fc2017-09-29 17:12:12 +010063env.Append(LIBPATH = ["#build/%s" % env['build_dir']])
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064
65SConsignFile('build/.%s' % env['build_dir'])
66
67Help(vars.GenerateHelpText(env))
68
69if env['neon'] and 'x86' in env['arch']:
70 print "Cannot compile NEON for x86"
71 Exit(1)
72
73if env['set_soname'] and not version_at_least(SCons.__version__, "2.4"):
74 print "Setting the library's SONAME / SHLIBVERSION requires SCons 2.4 or above"
75 print "Update your version of SCons or use set_soname=0"
76 Exit(1)
77
78if env['os'] == 'bare_metal':
79 if env['cppthreads'] or env['openmp']:
80 print("ERROR: OpenMP and C++11 threads not supported in bare_metal. Use cppthreads=0 openmp=0")
81 Exit(1)
82
83env.Append(CXXFLAGS = ['-Wno-deprecated-declarations','-Wall','-DARCH_ARM',
84 '-Wextra','-Wno-unused-parameter','-pedantic','-Wdisabled-optimization','-Wformat=2',
85 '-Winit-self','-Wstrict-overflow=2','-Wswitch-default',
86 '-fpermissive','-std=gnu++11','-Wno-vla','-Woverloaded-virtual',
87 '-Wctor-dtor-privacy','-Wsign-promo','-Weffc++','-Wno-format-nonliteral','-Wno-overlength-strings','-Wno-strict-overflow'])
Isabella Gottardib28f29d2017-11-09 17:05:07 +000088
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089env.Append(CPPDEFINES = ['_GLIBCXX_USE_NANOSLEEP'])
90
Anthony Barbiera026e982018-01-18 10:57:52 +000091default_cpp_compiler = 'g++' if env['os'] != 'android' else 'clang++'
92default_c_compiler = 'gcc' if env['os'] != 'android' else 'clang'
93cpp_compiler = os.environ.get('CXX', default_cpp_compiler)
94c_compiler = os.environ.get('CC', default_c_compiler)
95
96if env['os'] == 'android' and ( cpp_compiler != 'clang++' or c_compiler != 'clang'):
97 print "WARNING: Only clang is officially supported to build the Compute Library for Android"
98
99if cpp_compiler == 'clang++':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100 env.Append(CXXFLAGS = ['-Wno-format-nonliteral','-Wno-deprecated-increment-bool','-Wno-vla-extension','-Wno-mismatched-tags'])
101else:
102 env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel'])
103
104if env['cppthreads']:
105 env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
106
107if env['openmp']:
Anthony Barbiera026e982018-01-18 10:57:52 +0000108 if cpp_compiler == 'clang++':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100109 print "Clang does not support OpenMP. Use scheduler=cpp."
110 Exit(1)
111
112 env.Append(CPPDEFINES = [('ARM_COMPUTE_OPENMP_SCHEDULER', 1)])
113 env.Append(CXXFLAGS = ['-fopenmp'])
114 env.Append(LINKFLAGS = ['-fopenmp'])
115
116prefix = ""
117if env['arch'] == 'armv7a':
118 env.Append(CXXFLAGS = ['-march=armv7-a', '-mthumb', '-mfpu=neon'])
119
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100120 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121 prefix = "arm-linux-gnueabihf-"
122 env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100123 elif env['os'] == 'bare_metal':
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100124 prefix = "arm-eabi-"
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100125 env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126 elif env['os'] == 'android':
127 prefix = "arm-linux-androideabi-"
128 env.Append(CXXFLAGS = ['-mfloat-abi=softfp'])
129elif env['arch'] == 'arm64-v8a':
130 env.Append(CXXFLAGS = ['-march=armv8-a'])
Pablo Tello181e6512017-11-15 13:28:27 +0000131 env.Append(CPPDEFINES = ['ARM_COMPUTE_AARCH64_V8A'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100132 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 prefix = "aarch64-linux-gnu-"
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100134 elif env['os'] == 'bare_metal':
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100135 prefix = "aarch64-elf-"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136 elif env['os'] == 'android':
137 prefix = "aarch64-linux-android-"
138elif env['arch'] == 'arm64-v8.2-a':
Ioan-Cristian Szabo33fd07b2017-10-26 15:42:24 +0100139 env.Append(CPPDEFINES = ['ARM_COMPUTE_AARCH64_V8_2'])
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000140
Anthony Barbiera026e982018-01-18 10:57:52 +0000141 if cpp_compiler == 'clang++':
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +0000142 env.Append(CXXFLAGS = ['-fno-integrated-as'])
143
Pablo Tello9e40cf72017-09-15 16:14:55 +0100144 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145 prefix = "aarch64-linux-gnu-"
Pablo Tello9e40cf72017-09-15 16:14:55 +0100146 elif env['os'] == 'bare_metal':
147 prefix = "aarch64-elf-"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148 elif env['os'] == 'android':
149 prefix = "aarch64-linux-android-"
150elif env['arch'] == 'x86_32':
151 env.Append(CCFLAGS = ['-m32'])
152 env.Append(LINKFLAGS = ['-m32'])
153elif env['arch'] == 'x86_64':
154 env.Append(CCFLAGS = ['-m64'])
155 env.Append(LINKFLAGS = ['-m64'])
156
157if env['build'] == 'native':
158 prefix = ""
159
Anthony Barbiera026e982018-01-18 10:57:52 +0000160env['CC'] = prefix + c_compiler
161env['CXX'] = prefix + cpp_compiler
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162env['LD'] = prefix + "ld"
163env['AS'] = prefix + "as"
164env['AR'] = prefix + "ar"
165env['RANLIB'] = prefix + "ranlib"
166
167if not GetOption("help"):
168 try:
Anthony Barbier907dba82017-08-25 10:11:39 +0100169 compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).strip()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100170 except OSError:
171 print("ERROR: Compiler '%s' not found" % env['CXX'])
172 Exit(1)
173
Anthony Barbiera026e982018-01-18 10:57:52 +0000174 if cpp_compiler == 'g++':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175 if env['arch'] == 'arm64-v8.2-a' and not version_at_least(compiler_ver, '6.2.1'):
176 print "GCC 6.2.1 or newer is required to compile armv8.2-a code"
177 Exit(1)
178 elif env['arch'] == 'arm64-v8a' and not version_at_least(compiler_ver, '4.9'):
179 print "GCC 4.9 or newer is required to compile NEON code for AArch64"
180 Exit(1)
181
182 if version_at_least(compiler_ver, '6.1'):
183 env.Append(CXXFLAGS = ['-Wno-ignored-attributes'])
184
185 if compiler_ver == '4.8.3':
186 env.Append(CXXFLAGS = ['-Wno-array-bounds'])
187
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100188if env['standalone']:
189 env.Append(CXXFLAGS = ['-fPIC'])
190 env.Append(LINKFLAGS = ['-static-libgcc','-static-libstdc++'])
Pablo Tello89519332017-11-17 11:52:36 +0000191 if env['cppthreads']:
192 env.Append(LINKFLAGS = ['-lpthread'])
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100193
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100194if env['Werror']:
195 env.Append(CXXFLAGS = ['-Werror'])
196
197if env['os'] == 'android':
198 env.Append(CPPDEFINES = ['ANDROID'])
Georgios Pinitas9873ea32017-12-05 15:28:55 +0000199 env.Append(LINKFLAGS = ['-pie', '-static-libstdc++'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100200elif env['os'] == 'bare_metal':
201 env.Append(LINKFLAGS = ['-static'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100202 env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100203 env.Append(CXXFLAGS = ['-fPIC'])
204 env.Append(CPPDEFINES = ['NO_MULTI_THREADING'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100205 env.Append(CPPDEFINES = ['BARE_METAL'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206
207if env['opencl']:
Georgios Pinitase6032da2017-10-26 14:13:35 +0100208 if env['os'] in ['bare_metal'] or env['standalone']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100209 print("Cannot link OpenCL statically, which is required on bare metal")
210 Exit(1)
211
Anthony Barbier7068f992017-10-26 15:23:08 +0100212if env['opencl'] or env['gles_compute']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100213 if env['embed_kernels']:
214 env.Append(CPPDEFINES = ['EMBEDDED_KERNELS'])
215
216if env['debug']:
217 env['asserts'] = True
Georgios Pinitas3faea252017-10-30 14:13:50 +0000218 env['logging'] = True
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100219 env.Append(CXXFLAGS = ['-O0','-g','-gdwarf-2'])
220 env.Append(CPPDEFINES = ['ARM_COMPUTE_DEBUG_ENABLED'])
221else:
222 env.Append(CXXFLAGS = ['-O3','-ftree-vectorize'])
223
224if env['asserts']:
225 env.Append(CPPDEFINES = ['ARM_COMPUTE_ASSERTS_ENABLED'])
Moritz Pflanzer8b74c782017-09-14 14:33:20 +0100226 env.Append(CXXFLAGS = ['-fstack-protector-strong'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100227
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +0100228if env['logging']:
229 env.Append(CPPDEFINES = ['ARM_COMPUTE_LOGGING_ENABLED'])
230
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100231env.Append(CPPPATH = ['#/include', "#"])
232env.Append(CXXFLAGS = env['extra_cxx_flags'])
233
234Export('vars')
235Export('env')
236Export('version_at_least')
237
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100238if env['opencl']:
239 SConscript("./opencl-1.2-stubs/SConscript", variant_dir="build/%s/opencl-1.2-stubs" % env['build_dir'], duplicate=0)
240
Anthony Barbier7068f992017-10-26 15:23:08 +0100241if env['gles_compute'] and env['os'] != 'android':
Anthony Barbier14c86a92017-12-14 16:27:41 +0000242 env.Append(CPPPATH = ['#/include/linux'])
243 env.Append(LIBPATH = ["#build/%s/opengles-3.1-stubs" % env['build_dir']])
244 SConscript("./opengles-3.1-stubs/SConscript", variant_dir="build/%s/opengles-3.1-stubs" % env['build_dir'], duplicate=0)
Anthony Barbier7068f992017-10-26 15:23:08 +0100245
Anthony Barbier6c0348f2017-11-10 18:32:38 +0000246SConscript('./SConscript', variant_dir='#build/%s' % env['build_dir'], duplicate=0)
247
Michalis Spyrou6e52ba32017-10-04 15:40:38 +0100248if env['examples'] and env['os'] != 'bare_metal':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100249 SConscript('./examples/SConscript', variant_dir='#build/%s/examples' % env['build_dir'], duplicate=0)
250
Pablo Tello9e40cf72017-09-15 16:14:55 +0100251if env['os'] != 'bare_metal':
252 SConscript('./tests/SConscript', variant_dir='#build/%s/tests' % env['build_dir'], duplicate=0)