mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
darwin: Default to cc and c++ for Mavrick.
This commit is contained in:
parent
00693f913b
commit
7c30130169
@ -36,24 +36,33 @@ def load():
|
|||||||
else:
|
else:
|
||||||
ncpus = '1'
|
ncpus = '1'
|
||||||
defines = {
|
defines = {
|
||||||
'_ncpus': ('none', 'none', ncpus),
|
'_ncpus': ('none', 'none', ncpus),
|
||||||
'_os': ('none', 'none', 'darwin'),
|
'_os': ('none', 'none', 'darwin'),
|
||||||
'_host': ('triplet', 'required', uname[4] + '-apple-darwin' + uname[2]),
|
'_host': ('triplet', 'required', uname[4] + '-apple-darwin' + uname[2]),
|
||||||
'_host_vendor': ('none', 'none', 'apple'),
|
'_host_vendor': ('none', 'none', 'apple'),
|
||||||
'_host_os': ('none', 'none', 'darwin'),
|
'_host_os': ('none', 'none', 'darwin'),
|
||||||
'_host_cpu': ('none', 'none', uname[4]),
|
'_host_cpu': ('none', 'none', uname[4]),
|
||||||
'_host_alias': ('none', 'none', '%{nil}'),
|
'_host_alias': ('none', 'none', '%{nil}'),
|
||||||
'_host_arch': ('none', 'none', uname[4]),
|
'_host_arch': ('none', 'none', uname[4]),
|
||||||
'_usr': ('dir', 'optional', '/usr/local'),
|
'_usr': ('dir', 'optional', '/usr/local'),
|
||||||
'_var': ('dir', 'optional', '/usr/local/var'),
|
'_var': ('dir', 'optional', '/usr/local/var'),
|
||||||
'_prefix': ('dir', 'optional', '%{_usr}'),
|
'_prefix': ('dir', 'optional', '%{_usr}'),
|
||||||
'__ldconfig': ('exe', 'none', ''),
|
'__ldconfig': ('exe', 'none', ''),
|
||||||
'__cvs': ('exe', 'required', 'cvs'),
|
'__cvs': ('exe', 'required', 'cvs'),
|
||||||
'__xz': ('exe', 'required', '%{_usr}/bin/xz'),
|
'__xz': ('exe', 'required', '%{_usr}/bin/xz'),
|
||||||
'with_zlib': ('none', 'none', '--with-zlib=no'),
|
'with_zlib': ('none', 'none', '--with-zlib=no'),
|
||||||
'_forced_static': ('none', 'none', '')
|
'_forced_static': ('none', 'none', ''),
|
||||||
|
'_extra_path': ('none', 'none', '%{_sbdir}/bin'),
|
||||||
|
'_ld_library_path': ('none', 'none', 'DYLD_LIBRARY_PATH')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
version = uname[2]
|
||||||
|
if version.find('.'):
|
||||||
|
version = version.split('.')[0]
|
||||||
|
if int(version) >= 13:
|
||||||
|
defines['__cc'] = ('exe', 'required', '/usr/bin/cc')
|
||||||
|
defines['__cxx'] = ('exe', 'required', '/usr/bin/c++')
|
||||||
|
|
||||||
defines['_build'] = defines['_host']
|
defines['_build'] = defines['_host']
|
||||||
defines['_build_vendor'] = defines['_host_vendor']
|
defines['_build_vendor'] = defines['_host_vendor']
|
||||||
defines['_build_os'] = defines['_host_os']
|
defines['_build_os'] = defines['_host_os']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user