blob: 50370d34c3f06d015d02431b047c49b6edfaa127 [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),
42 EnumVariable("arch", "Target Architecture", "armv7a", allowed_values=("armv7a", "arm64-v8a", "arm64-v8.2-a", "x86_32", "x86_64")),
43 EnumVariable("os", "Target OS", "linux", allowed_values=("linux", "android", "bare_metal")),
44 EnumVariable("build", "Build type", "cross_compile", allowed_values=("native", "cross_compile")),
45 BoolVariable("examples", "Build example programs", True),
46 BoolVariable("Werror", "Enable/disable the -Werror compilation flag", True),
Pablo Telloc6cb35a2017-06-21 15:39:47 +010047 BoolVariable("standalone", "Builds the tests as standalone executables, links statically with libgcc, libstdc++ and libarm_compute", False),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 BoolVariable("opencl", "Enable OpenCL support", True),
49 BoolVariable("neon", "Enable Neon support", False),
50 BoolVariable("embed_kernels", "Embed OpenCL kernels in library binary", False),
51 BoolVariable("set_soname", "Set the library's soname and shlibversion (requires SCons 2.4 or above)", False),
52 BoolVariable("openmp", "Enable OpenMP backend", False),
53 BoolVariable("cppthreads", "Enable C++11 threads backend", True),
54 PathVariable("build_dir", "Specify sub-folder for the build", ".", PathVariable.PathAccept),
55 ("extra_cxx_flags", "Extra CXX flags to be appended to the build command", "")
56)
57
58env = Environment(platform="posix", variables=vars, ENV = os.environ)
59
60SConsignFile('build/.%s' % env['build_dir'])
61
62Help(vars.GenerateHelpText(env))
63
64if env['neon'] and 'x86' in env['arch']:
65 print "Cannot compile NEON for x86"
66 Exit(1)
67
68if env['set_soname'] and not version_at_least(SCons.__version__, "2.4"):
69 print "Setting the library's SONAME / SHLIBVERSION requires SCons 2.4 or above"
70 print "Update your version of SCons or use set_soname=0"
71 Exit(1)
72
73if env['os'] == 'bare_metal':
74 if env['cppthreads'] or env['openmp']:
75 print("ERROR: OpenMP and C++11 threads not supported in bare_metal. Use cppthreads=0 openmp=0")
76 Exit(1)
77
78env.Append(CXXFLAGS = ['-Wno-deprecated-declarations','-Wall','-DARCH_ARM',
79 '-Wextra','-Wno-unused-parameter','-pedantic','-Wdisabled-optimization','-Wformat=2',
80 '-Winit-self','-Wstrict-overflow=2','-Wswitch-default',
81 '-fpermissive','-std=gnu++11','-Wno-vla','-Woverloaded-virtual',
82 '-Wctor-dtor-privacy','-Wsign-promo','-Weffc++','-Wno-format-nonliteral','-Wno-overlength-strings','-Wno-strict-overflow'])
83env.Append(CPPDEFINES = ['_GLIBCXX_USE_NANOSLEEP'])
84
85if os.environ.get('CXX', 'g++') == 'clang++':
86 env.Append(CXXFLAGS = ['-Wno-format-nonliteral','-Wno-deprecated-increment-bool','-Wno-vla-extension','-Wno-mismatched-tags'])
87else:
88 env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel'])
89
90if env['cppthreads']:
91 env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
92
93if env['openmp']:
94 if os.environ.get('CXX', 'g++') == 'clang++':
95 print "Clang does not support OpenMP. Use scheduler=cpp."
96 Exit(1)
97
98 env.Append(CPPDEFINES = [('ARM_COMPUTE_OPENMP_SCHEDULER', 1)])
99 env.Append(CXXFLAGS = ['-fopenmp'])
100 env.Append(LINKFLAGS = ['-fopenmp'])
101
102prefix = ""
103if env['arch'] == 'armv7a':
104 env.Append(CXXFLAGS = ['-march=armv7-a', '-mthumb', '-mfpu=neon'])
105
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100106 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 prefix = "arm-linux-gnueabihf-"
108 env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100109 elif env['os'] == 'bare_metal':
110 prefix = "arm-none-eabi-"
111 env.Append(CXXFLAGS = ['-mfloat-abi=hard'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 elif env['os'] == 'android':
113 prefix = "arm-linux-androideabi-"
114 env.Append(CXXFLAGS = ['-mfloat-abi=softfp'])
115elif env['arch'] == 'arm64-v8a':
116 env.Append(CXXFLAGS = ['-march=armv8-a'])
117
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100118 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119 prefix = "aarch64-linux-gnu-"
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100120 elif env['os'] == 'bare_metal':
121 prefix = "aarch64-none-elf-"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 elif env['os'] == 'android':
123 prefix = "aarch64-linux-android-"
124elif env['arch'] == 'arm64-v8.2-a':
125 env.Append(CXXFLAGS = ['-march=armv8.2-a+fp16+simd'])
126 env.Append(CPPDEFINES = ['ARM_COMPUTE_ENABLE_FP16'])
Pablo Tello9e40cf72017-09-15 16:14:55 +0100127 if env['os'] == 'linux':
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128 prefix = "aarch64-linux-gnu-"
Pablo Tello9e40cf72017-09-15 16:14:55 +0100129 elif env['os'] == 'bare_metal':
130 prefix = "aarch64-elf-"
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 elif env['os'] == 'android':
132 prefix = "aarch64-linux-android-"
133elif env['arch'] == 'x86_32':
134 env.Append(CCFLAGS = ['-m32'])
135 env.Append(LINKFLAGS = ['-m32'])
136elif env['arch'] == 'x86_64':
137 env.Append(CCFLAGS = ['-m64'])
138 env.Append(LINKFLAGS = ['-m64'])
139
140if env['build'] == 'native':
141 prefix = ""
142
143env['CC'] = prefix + os.environ.get('CC', 'gcc')
144env['CXX'] = prefix + os.environ.get('CXX', 'g++')
145env['LD'] = prefix + "ld"
146env['AS'] = prefix + "as"
147env['AR'] = prefix + "ar"
148env['RANLIB'] = prefix + "ranlib"
149
150if not GetOption("help"):
151 try:
Anthony Barbier907dba82017-08-25 10:11:39 +0100152 compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).strip()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153 except OSError:
154 print("ERROR: Compiler '%s' not found" % env['CXX'])
155 Exit(1)
156
157 if os.environ.get('CXX','g++') == 'g++':
158 if env['arch'] == 'arm64-v8.2-a' and not version_at_least(compiler_ver, '6.2.1'):
159 print "GCC 6.2.1 or newer is required to compile armv8.2-a code"
160 Exit(1)
161 elif env['arch'] == 'arm64-v8a' and not version_at_least(compiler_ver, '4.9'):
162 print "GCC 4.9 or newer is required to compile NEON code for AArch64"
163 Exit(1)
164
165 if version_at_least(compiler_ver, '6.1'):
166 env.Append(CXXFLAGS = ['-Wno-ignored-attributes'])
167
168 if compiler_ver == '4.8.3':
169 env.Append(CXXFLAGS = ['-Wno-array-bounds'])
170
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100171if env['standalone']:
172 env.Append(CXXFLAGS = ['-fPIC'])
173 env.Append(LINKFLAGS = ['-static-libgcc','-static-libstdc++'])
174
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175if env['Werror']:
176 env.Append(CXXFLAGS = ['-Werror'])
177
178if env['os'] == 'android':
179 env.Append(CPPDEFINES = ['ANDROID'])
180 env.Append(LINKFLAGS = ['-pie', '-static-libstdc++'])
181elif env['os'] == 'bare_metal':
182 env.Append(LINKFLAGS = ['-static'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100183 env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 env.Append(CXXFLAGS = ['-fPIC'])
185 env.Append(CPPDEFINES = ['NO_MULTI_THREADING'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100186 env.Append(CPPDEFINES = ['BARE_METAL'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187
188if env['opencl']:
189 if env['os'] == 'bare_metal':
190 print("Cannot link OpenCL statically, which is required on bare metal")
191 Exit(1)
192
193 if env['embed_kernels']:
194 env.Append(CPPDEFINES = ['EMBEDDED_KERNELS'])
195
196if env['debug']:
197 env['asserts'] = True
198 env.Append(CXXFLAGS = ['-O0','-g','-gdwarf-2'])
199 env.Append(CPPDEFINES = ['ARM_COMPUTE_DEBUG_ENABLED'])
200else:
201 env.Append(CXXFLAGS = ['-O3','-ftree-vectorize'])
202
203if env['asserts']:
204 env.Append(CPPDEFINES = ['ARM_COMPUTE_ASSERTS_ENABLED'])
Moritz Pflanzer8b74c782017-09-14 14:33:20 +0100205 env.Append(CXXFLAGS = ['-fstack-protector-strong'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206
207env.Append(CPPPATH = ['#/include', "#"])
208env.Append(CXXFLAGS = env['extra_cxx_flags'])
209
210Export('vars')
211Export('env')
212Export('version_at_least')
213
214SConscript('./SConscript', variant_dir='#build/%s' % env['build_dir'], duplicate=0)
215
216if env['opencl']:
217 SConscript("./opencl-1.2-stubs/SConscript", variant_dir="build/%s/opencl-1.2-stubs" % env['build_dir'], duplicate=0)
218
219if env['examples']:
220 SConscript('./examples/SConscript', variant_dir='#build/%s/examples' % env['build_dir'], duplicate=0)
221
Pablo Tello9e40cf72017-09-15 16:14:55 +0100222if env['os'] != 'bare_metal':
223 SConscript('./tests/SConscript', variant_dir='#build/%s/tests' % env['build_dir'], duplicate=0)