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

5
Last change on this file since d48abf4 was 4b7af07, checked in by Chris Johns <chrisj@…>, on 09/12/19 at 10:09:13

5/llvm: Add LLVM as a package for RTEMS.

  • Add '%source download <source>' to only download the source and do not unpack and prep. This can used when a package internally needs another source package.
  • Install the staging root only if it is present. A package may internally build another package that is not staged as it is not suitable for installing.

Updates #3250
Updatew #3797

  • Property mode set to 100644
File size: 5.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 error
32import execute
33
34def load():
35    uname = os.uname()
36    sysctl = '/sbin/sysctl '
37    e = execute.capture_execution()
38    exit_code, proc, output = e.shell(sysctl + 'hw.ncpu')
39    if exit_code == 0:
40        ncpus = output.split(' ')[1].strip()
41    else:
42        ncpus = '1'
43    if uname[4] == 'amd64':
44        cpu = 'x86_64'
45    else:
46        cpu = uname[4]
47    version = uname[2]
48    if version.find('-') > 0:
49        version = version.split('-')[0]
50    defines = {
51        '_ncpus':           ('none',    'none',     ncpus),
52        '_os':              ('none',    'none',     'freebsd'),
53        '_host':            ('triplet', 'required', cpu + '-freebsd' + version),
54        '_host_vendor':     ('none',    'none',     'pc'),
55        '_host_os':         ('none',    'none',     'freebsd'),
56        '_host_os_version': ('none',    'none',     version),
57        '_host_cpu':        ('none',    'none',     cpu),
58        '_host_alias':      ('none',    'none',     '%{nil}'),
59        '_host_arch':       ('none',    'none',     cpu),
60        'host_includes':    ('none',    'convert',  '-I%{_usr}/include'),
61        'host_ldflags':     ('none',    'convert',  '-L%{_usr}/lib'),
62        '_usr':             ('dir',     'required', '/usr/local'),
63        '_var':             ('dir',     'optional', '/usr/local/var'),
64        '__bash':           ('exe',     'optional', '/usr/local/bin/bash'),
65        '__bison':          ('exe',     'required', '/usr/local/bin/bison'),
66        '__cmake':          ('exe',     'optional', '/usr/local/bin/cmake'),
67        '__git':            ('exe',     'required', '/usr/local/bin/git'),
68        '__svn':            ('exe',     'optional', '/usr/local/bin/svn'),
69        '__unzip':          ('exe',     'optional', '/usr/local/bin/unzip'),
70        '__xz':             ('exe',     'optional', '/usr/bin/xz'),
71        '__make':           ('exe',     'required', 'gmake'),
72        '__patch_opts':     ('none',     'none',    '-E')
73    }
74
75    defines['_build']        = defines['_host']
76    defines['_build_vendor'] = defines['_host_vendor']
77    defines['_build_os']     = defines['_host_os']
78    defines['_build_cpu']    = defines['_host_cpu']
79    defines['_build_alias']  = defines['_host_alias']
80    defines['_build_arch']   = defines['_host_arch']
81
82    # FreeBSD 10 and above no longer have /usr/bin/cvs, but it can (e.g.) be
83    # installed to /usr/local/bin/cvs through the devel/cvs port
84    fb_version = int(float(version))
85    if fb_version >= 10:
86        #
87        # FreeBSD has switched to clang plus gcc. On 10.0 cc is gcc based and
88        # clang is provided however it is not building binutils-2.24.
89        #
90        cc = '/usr/bin/cc'
91        if check.check_exe(cc, cc):
92            defines['__cc'] = cc
93        else:
94            cc = '/usr/bin/clang'
95            if not check.check_exe(cc, cc):
96                raise error.general('no valid cc found')
97        cxx = '/usr/bin/c++'
98        if check.check_exe(cxx, cxx):
99            defines['__cxx'] = cxx
100        else:
101            cxx = '/usr/bin/clang++'
102            if check.check_exe(cxx, cxx):
103                raise error.general('no valid c++ found')
104        #
105        # Assume the compiler is clang and so we need to increase
106        # bracket depth build build the gcc ARM compiler.
107        #
108        defines['build_cflags'] = '-O2 -pipe -fbracket-depth=1024'
109        defines['build_cxxflags'] = '-O2 -pipe -fbracket-depth=1024'
110        cvs = 'cvs'
111        if check.check_exe(cvs, cvs):
112            defines['__cvs'] = cvs
113        #
114        # Fix the mess iconv is on FreeBSD 10.0.
115        #
116        defines['iconv_includes'] = ('none', 'none', '%{host_includes} %{host_ldflags}')
117
118        #
119        # On 11.0+ makeinfo and install-info have moved to /usr/local/...
120        #
121        if fb_version >= 11:
122            defines['__install_info'] = ('exe', 'optional', '/usr/local/bin/install-info')
123            defines['__makeinfo']     = ('exe', 'required', '/usr/local/bin/makeinfo')
124        #
125        # On 12.0+ unzip is in /usr/bin
126        #
127        if fb_version >= 12:
128            defines['__unzip'] = ('exe', 'optional', '/usr/bin/unzip')
129    else:
130        for gv in ['49', '48', '47']:
131            gcc = '%s-portbld-freebsd%s-gcc%s' % (cpu, version, gv)
132            if check.check_exe(gcc, gcc):
133                defines['__cc'] = gcc
134                break
135        for gv in ['49', '48', '47']:
136            gxx = '%s-portbld-freebsd%s-g++%s' % (cpu, version, gv)
137            if check.check_exe(gxx, gxx):
138                defines['__cxx'] = gxx
139                break
140
141    return defines
142
143if __name__ == '__main__':
144    pprint.pprint(load())
Note: See TracBrowser for help on using the repository browser.