source: rtems-source-builder/source-builder/sb/freebsd.py @ b7a13ab

4.104.114.95
Last change on this file since b7a13ab was b7a13ab, checked in by Nick Withers <nick.withers@…>, on 01/06/14 at 23:04:49

FreeBSD 10 and above no longer have /usr/bin/cvs - allow it to be found in the path (e.g., from a devel/cvs ports install)

  • Property mode set to 100644
File size: 3.5 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2010-2014 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# RTEMS Tools is free software: you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12#
13# RTEMS Tools is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with RTEMS Tools.  If not, see <http://www.gnu.org/licenses/>.
20#
21
22#
23# This code is based on what ever doco about spec files I could find and
24# RTEMS project's spec files.
25#
26
27import pprint
28import os
29
30import check
31import execute
32
33def load():
34    uname = os.uname()
35    sysctl = '/sbin/sysctl '
36    e = execute.capture_execution()
37    exit_code, proc, output = e.shell(sysctl + 'hw.ncpu')
38    if exit_code == 0:
39        ncpus = output.split(' ')[1].strip()
40    else:
41        ncpus = '1'
42    if uname[4] == 'amd64':
43        cpu = 'x86_64'
44    else:
45        cpu = uname[4]
46    version = uname[2]
47    if version.find('-') > 0:
48        version = version.split('-')[0]
49    defines = {
50        '_ncpus':        ('none',    'none',     ncpus),
51        '_os':           ('none',    'none',     'freebsd'),
52        '_host':         ('triplet', 'required', cpu + '-freebsd' + version),
53        '_host_vendor':  ('none',    'none',     'pc'),
54        '_host_os':      ('none',    'none',     'freebsd'),
55        '_host_cpu':     ('none',    'none',     cpu),
56        '_host_alias':   ('none',    'none',     '%{nil}'),
57        '_host_arch':    ('none',    'none',     cpu),
58        '_usr':          ('dir',     'required', '/usr/local'),
59        '_var':          ('dir',     'optional', '/usr/local/var'),
60        '__bash':        ('exe',     'optional', '/usr/local/bin/bash'),
61        '__bison':       ('exe',     'required', '/usr/local/bin/bison'),
62        '__git':         ('exe',     'required', '/usr/local/bin/git'),
63        '__svn':         ('exe',     'required', '/usr/local/bin/svn'),
64        '__xz':          ('exe',     'optional', '/usr/bin/xz'),
65        '__make':        ('exe',     'required', 'gmake'),
66        '__patch_opts':  ('none',     'none',    '-E')
67        }
68
69    defines['_build']        = defines['_host']
70    defines['_build_vendor'] = defines['_host_vendor']
71    defines['_build_os']     = defines['_host_os']
72    defines['_build_cpu']    = defines['_host_cpu']
73    defines['_build_alias']  = defines['_host_alias']
74    defines['_build_arch']   = defines['_host_arch']
75
76    # FreeBSD 10 and above no longer have /usr/bin/cvs, but it can (e.g.) be installed to /usr/local/bin/cvs through the devel/cvs port
77    if int(float(version)) >= 10:
78        cvs = 'cvs'
79        if check.check_exe(cvs, cvs):
80            defines['__cvs'] = cvs
81
82    for gv in ['47', '48', '49']:
83        gcc = '%s-portbld-freebsd%s-gcc%s' % (cpu, version, gv)
84        if check.check_exe(gcc, gcc):
85            defines['__cc'] = gcc
86            break
87    for gv in ['47', '48', '49']:
88        gxx = '%s-portbld-freebsd%s-g++%s' % (cpu, version, gv)
89        if check.check_exe(gxx, gxx):
90            defines['__cxx'] = gxx
91            break
92
93    return defines
94
95if __name__ == '__main__':
96    pprint.pprint(load())
Note: See TracBrowser for help on using the repository browser.