mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
hurd: Make build-many-glibcs.py use mainline gnumach
Some warnings need a couple of fixes in the gnumach headers. * scripts/build-many-glibcs.py (checkout_vcs): Add gnumach repository URLs, run autoreconf, and make it the default for now.
This commit is contained in:
@ -19,8 +19,8 @@
|
|||||||
timer_ptr2id to cast struct timer_node * to void *.
|
timer_ptr2id to cast struct timer_node * to void *.
|
||||||
* scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
|
* scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
|
||||||
--disable-libcilkrts to gcc configure.
|
--disable-libcilkrts to gcc configure.
|
||||||
(checkout_vcs): Add mig repository URL, and run autoreconf, make it the
|
(checkout_vcs): Add mig and gnumach repository URLs, run autoreconf,
|
||||||
default for now.
|
and make them the default for now.
|
||||||
* sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
|
* sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
|
||||||
-DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
|
-DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
|
||||||
* mach/Machrules (MIGFLAGS): Do not set -DMACH_IPC_COMPAT=0.
|
* mach/Machrules (MIGFLAGS): Do not set -DMACH_IPC_COMPAT=0.
|
||||||
|
@ -705,7 +705,7 @@ class Context(object):
|
|||||||
'mpc': '1.1.0',
|
'mpc': '1.1.0',
|
||||||
'mpfr': '4.0.0',
|
'mpfr': '4.0.0',
|
||||||
'mig': 'vcs-mainline',
|
'mig': 'vcs-mainline',
|
||||||
'gnumach': '1.8',
|
'gnumach': 'vcs-mainline',
|
||||||
'hurd': 'vcs-mainline'}
|
'hurd': 'vcs-mainline'}
|
||||||
use_versions = {}
|
use_versions = {}
|
||||||
explicit_versions = {}
|
explicit_versions = {}
|
||||||
@ -786,6 +786,13 @@ class Context(object):
|
|||||||
r = self.git_checkout(component, git_url, git_branch, update)
|
r = self.git_checkout(component, git_url, git_branch, update)
|
||||||
self.fix_glibc_timestamps()
|
self.fix_glibc_timestamps()
|
||||||
return r
|
return r
|
||||||
|
elif component == 'gnumach':
|
||||||
|
git_url = 'git://git.savannah.gnu.org/hurd/gnumach.git'
|
||||||
|
git_branch = 'master'
|
||||||
|
r = self.git_checkout(component, git_url, git_branch, update)
|
||||||
|
subprocess.run(['autoreconf', '-i'],
|
||||||
|
cwd=self.component_srcdir(component), check=True)
|
||||||
|
return r
|
||||||
elif component == 'mig':
|
elif component == 'mig':
|
||||||
git_url = 'git://git.savannah.gnu.org/hurd/mig.git'
|
git_url = 'git://git.savannah.gnu.org/hurd/mig.git'
|
||||||
git_branch = 'master'
|
git_branch = 'master'
|
||||||
|
Reference in New Issue
Block a user