blob: e869b40adfed1fc961d38a8d598949c752d317ce [file] [log] [blame]
Alexandre Ramesb78f1392016-07-01 14:22:22 +01001# Copyright 2015, VIXL authors
armvixlad96eda2013-06-14 11:42:37 +01002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6#
7# * Redistributions of source code must retain the above copyright notice,
8# this list of conditions and the following disclaimer.
9# * Redistributions in binary form must reproduce the above copyright notice,
10# this list of conditions and the following disclaimer in the documentation
11# and/or other materials provided with the distribution.
12# * Neither the name of ARM Limited nor the names of its contributors may be
13# used to endorse or promote products derived from this software without
14# specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
armvixldb644342015-07-21 11:37:10 +010027import glob
armvixl6e2c8272015-03-31 11:04:14 +010028import os
armvixlad96eda2013-06-14 11:42:37 +010029import re
armvixldb644342015-07-21 11:37:10 +010030import shlex
31import subprocess
32import sys
33
34
35def ListCCFilesWithoutExt(path):
36 return map(lambda x : os.path.splitext(os.path.basename(x))[0],
37 glob.glob(os.path.join(path, '*.cc')))
armvixlad96eda2013-06-14 11:42:37 +010038
39
40def abort(message):
41 print('ABORTING: ' + message)
42 sys.exit(1)
43
44
45# Emulate python3 subprocess.getstatusoutput.
armvixldb644342015-07-21 11:37:10 +010046def getstatusoutput(command, shell=False):
armvixlad96eda2013-06-14 11:42:37 +010047 try:
48 args = shlex.split(command)
armvixldb644342015-07-21 11:37:10 +010049 output = subprocess.check_output(args, stderr=subprocess.STDOUT, shell=shell)
armvixlad96eda2013-06-14 11:42:37 +010050 return 0, output.rstrip('\n')
51 except subprocess.CalledProcessError as e:
52 return e.returncode, e.output.rstrip('\n')
53
54
armvixl0f35e362016-05-10 13:57:58 +010055def IsCommandAvailable(command):
56 retcode, unused_output = getstatusoutput('which %s' % command)
57 return retcode == 0
58
59
armvixldb644342015-07-21 11:37:10 +010060def ensure_dir(path_name):
61 if not os.path.exists(path_name):
62 os.makedirs(path_name)
armvixl6e2c8272015-03-31 11:04:14 +010063
64
armvixldb644342015-07-21 11:37:10 +010065# Check that the specified program is available.
66def require_program(program_name):
67 rc, out = getstatusoutput('which %s' % program_name)
68 if rc != 0:
69 print('ERROR: The required program %s was not found.' % program_name)
70 sys.exit(rc)
Alexandre Rames81c76e62016-07-19 09:53:09 +010071
72def relrealpath(path, start=os.getcwd()):
73 return os.path.relpath(os.path.realpath(path), start)
Pierre Langloisa3b21462016-08-04 16:01:51 +010074
75# Query the target architecture of the compiler. The 'target' architecture of
76# the compiler used to build VIXL is considered to be the 'host' architecture of
77# VIXL itself.
78def GetHostArch(cxx):
79 # Instruct the compiler to dump all its preprocessor macros.
80 dump = subprocess.Popen([cxx, '-E', '-dM', '-'], stdin=subprocess.PIPE,
81 stdout=subprocess.PIPE)
82 out, _ = dump.communicate()
83 macro_list = [
84 # Extract the macro name.
85 match.group(1)
86 for match in [
87 # Capture macro name.
88 re.search('#define (.*?) 1', macro)
89 for macro in out.split('\n')
90 ]
91 # Filter out non-matches.
92 if match
93 ]
94 if "__x86_64__" in macro_list:
95 return "x86_64"
96 elif "__arm__" in macro_list:
97 return "aarch32"
98 elif "__aarch64__" in macro_list:
99 return "aarch64"
100 else:
101 raise Exception("Unsupported archtecture")