source: rtems-source-builder/source-builder/sb/darwin.py @ 3bc9e31

4.104.114.95
Last change on this file since 3bc9e31 was 3bc9e31, checked in by Chris Johns <chrisj@…>, on 10/25/13 at 23:11:30

Search any path for CVS on Darwin (MacOS).

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[bf13d27]1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2010-2012 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# Permission to use, copy, modify, and/or distribute this software for any
9# purpose with or without fee is hereby granted, provided that the above
10# copyright notice and this permission notice appear in all copies.
11#
12# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20#
21# This code is based on what ever doco about spec files I could find and
22# RTEMS project's spec files.
23#
24
25import os
26
27import execute
28
29def load():
30    uname = os.uname()
31    sysctl = '/usr/sbin/sysctl '
32    e = execute.capture_execution()
33    exit_code, proc, output = e.shell(sysctl + 'hw.ncpu')
34    if exit_code == 0:
[0add2ea]35        ncpus = output.split(' ')[1].strip()
[bf13d27]36    else:
[0add2ea]37        ncpus = '1'
[bf13d27]38    defines = {
[64f337b]39        '_ncpus':         ('none',    'none',     ncpus),
40        '_os':            ('none',    'none',     'darwin'),
41        '_host':          ('triplet', 'required', uname[4] + '-apple-darwin' + uname[2]),
42        '_host_vendor':   ('none',    'none',     'apple'),
43        '_host_os':       ('none',    'none',     'darwin'),
44        '_host_cpu':      ('none',    'none',     uname[4]),
45        '_host_alias':    ('none',    'none',     '%{nil}'),
46        '_host_arch':     ('none',    'none',     uname[4]),
47        '_usr':           ('dir',     'optional', '/usr/local'),
48        '_var':           ('dir',     'optional', '/usr/local/var'),
49        '_prefix':        ('dir',     'optional', '%{_usr}'),
50        '__ldconfig':     ('exe',     'none',     ''),
[3bc9e31]51        '__cvs':          ('exe',     'required', 'cvs'),
[64f337b]52        '__xz':           ('exe',     'required', '%{_usr}/bin/xz'),
53        'with_zlib':      ('none',    'none',     '--with-zlib=no'),
54        '_forced_static': ('none',    'none',     '')
[bf13d27]55        }
[db65c6a]56
57    defines['_build']        = defines['_host']
58    defines['_build_vendor'] = defines['_host_vendor']
59    defines['_build_os']     = defines['_host_os']
60    defines['_build_cpu']    = defines['_host_cpu']
61    defines['_build_alias']  = defines['_host_alias']
62    defines['_build_arch']   = defines['_host_arch']
63
[bf13d27]64    return defines
65
66if __name__ == '__main__':
[cb12e48]67    import pprint
[bf13d27]68    pprint.pprint(load())
Note: See TracBrowser for help on using the repository browser.