blob: b46f775541dfc1b033aa128234e6d90110cfe549 [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'])
127
128 if env['os'] in ['linux', 'bare_metal']:
129 prefix = "aarch64-linux-gnu-"
130 elif env['os'] == 'android':
131 prefix = "aarch64-linux-android-"
132elif env['arch'] == 'x86_32':
133 env.Append(CCFLAGS = ['-m32'])
134 env.Append(LINKFLAGS = ['-m32'])
135elif env['arch'] == 'x86_64':
136 env.Append(CCFLAGS = ['-m64'])
137 env.Append(LINKFLAGS = ['-m64'])
138
139if env['build'] == 'native':
140 prefix = ""
141
142env['CC'] = prefix + os.environ.get('CC', 'gcc')
143env['CXX'] = prefix + os.environ.get('CXX', 'g++')
144env['LD'] = prefix + "ld"
145env['AS'] = prefix + "as"
146env['AR'] = prefix + "ar"
147env['RANLIB'] = prefix + "ranlib"
148
149if not GetOption("help"):
150 try:
Anthony Barbier907dba82017-08-25 10:11:39 +0100151 compiler_ver = subprocess.check_output(env['CXX'].split() + ["-dumpversion"]).strip()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152 except OSError:
153 print("ERROR: Compiler '%s' not found" % env['CXX'])
154 Exit(1)
155
156 if os.environ.get('CXX','g++') == 'g++':
157 if env['arch'] == 'arm64-v8.2-a' and not version_at_least(compiler_ver, '6.2.1'):
158 print "GCC 6.2.1 or newer is required to compile armv8.2-a code"
159 Exit(1)
160 elif env['arch'] == 'arm64-v8a' and not version_at_least(compiler_ver, '4.9'):
161 print "GCC 4.9 or newer is required to compile NEON code for AArch64"
162 Exit(1)
163
164 if version_at_least(compiler_ver, '6.1'):
165 env.Append(CXXFLAGS = ['-Wno-ignored-attributes'])
166
167 if compiler_ver == '4.8.3':
168 env.Append(CXXFLAGS = ['-Wno-array-bounds'])
169
Pablo Telloc6cb35a2017-06-21 15:39:47 +0100170if env['standalone']:
171 env.Append(CXXFLAGS = ['-fPIC'])
172 env.Append(LINKFLAGS = ['-static-libgcc','-static-libstdc++'])
173
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174if env['Werror']:
175 env.Append(CXXFLAGS = ['-Werror'])
176
177if env['os'] == 'android':
178 env.Append(CPPDEFINES = ['ANDROID'])
179 env.Append(LINKFLAGS = ['-pie', '-static-libstdc++'])
180elif env['os'] == 'bare_metal':
181 env.Append(LINKFLAGS = ['-static'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100182 env.Append(LINKFLAGS = ['-specs=rdimon.specs'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100183 env.Append(CXXFLAGS = ['-fPIC'])
184 env.Append(CPPDEFINES = ['NO_MULTI_THREADING'])
Michalis Spyrou07781ac2017-08-31 15:11:41 +0100185 env.Append(CPPDEFINES = ['BARE_METAL'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186
187if env['opencl']:
188 if env['os'] == 'bare_metal':
189 print("Cannot link OpenCL statically, which is required on bare metal")
190 Exit(1)
191
192 if env['embed_kernels']:
193 env.Append(CPPDEFINES = ['EMBEDDED_KERNELS'])
194
195if env['debug']:
196 env['asserts'] = True
197 env.Append(CXXFLAGS = ['-O0','-g','-gdwarf-2'])
198 env.Append(CPPDEFINES = ['ARM_COMPUTE_DEBUG_ENABLED'])
199else:
200 env.Append(CXXFLAGS = ['-O3','-ftree-vectorize'])
201
202if env['asserts']:
203 env.Append(CPPDEFINES = ['ARM_COMPUTE_ASSERTS_ENABLED'])
Moritz Pflanzer8b74c782017-09-14 14:33:20 +0100204 env.Append(CXXFLAGS = ['-fstack-protector-strong'])
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205
206env.Append(CPPPATH = ['#/include', "#"])
207env.Append(CXXFLAGS = env['extra_cxx_flags'])
208
209Export('vars')
210Export('env')
211Export('version_at_least')
212
213SConscript('./SConscript', variant_dir='#build/%s' % env['build_dir'], duplicate=0)
214
215if env['opencl']:
216 SConscript("./opencl-1.2-stubs/SConscript", variant_dir="build/%s/opencl-1.2-stubs" % env['build_dir'], duplicate=0)
217
218if env['examples']:
219 SConscript('./examples/SConscript', variant_dir='#build/%s/examples' % env['build_dir'], duplicate=0)
220
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100221SConscript('./tests/SConscript', variant_dir='#build/%s/tests' % env['build_dir'], duplicate=0)