[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Files in build-aux
From: |
Alan Third |
Subject: |
Re: Files in build-aux |
Date: |
Mon, 3 May 2021 20:49:25 +0100 |
On Mon, May 03, 2021 at 10:25:35PM +0300, Eli Zaretskii wrote:
> > From: Eric Abrahamsen <eric@ericabrahamsen.net>
> > Cc: Eli Zaretskii <eliz@gnu.org>, Alan Third <alan@idiocy.org>, Emacs
> > developers <emacs-devel@gnu.org>
> > Date: Mon, 03 May 2021 12:21:54 -0700
> >
> > >> > > build-aux/config.guess
> > >> > > build-aux/config.sub
> > >> > >
>
> What kind of changes does Git report in these two files? Attributes,
> perhaps?
It looks like it may require a run of autogen.sh to generate the
changes. I was sure before that just running plain "make" was enough,
but perhaps not.
I see these changes:
modified build-aux/config.guess
@@ -2,7 +2,7 @@
# Attempt to guess a canonical system name.
# Copyright 1992-2021 Free Software Foundation, Inc.
-timestamp='2021-01-01'
+timestamp='2021-01-25'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -188,10 +188,9 @@ UNAME_VERSION=
#
# Note: NetBSD doesn't particularly care about the vendor
# portion of the name. We always set it to "unknown".
- sysctl="sysctl -n hw.machine_arch"
UNAME_MACHINE_ARCH=$( (uname -p 2>/dev/null || \
- "/sbin/$sysctl" 2>/dev/null || \
- "/usr/sbin/$sysctl" 2>/dev/null || \
+ /sbin/sysctl -n hw.machine_arch 2>/dev/null || \
+ /usr/sbin/sysctl -n hw.machine_arch 2>/dev/null || \
echo unknown))
case "$UNAME_MACHINE_ARCH" in
aarch64eb) machine=aarch64_be-unknown ;;
@@ -1483,8 +1482,8 @@ main ()
i*86:rdos:*:*)
echo "$UNAME_MACHINE"-pc-rdos
exit ;;
- i*86:AROS:*:*)
- echo "$UNAME_MACHINE"-pc-aros
+ *:AROS:*:*)
+ echo "$UNAME_MACHINE"-unknown-aros
exit ;;
x86_64:VMkernel:*:*)
echo "$UNAME_MACHINE"-unknown-esx
modified build-aux/config.sub
@@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2021 Free Software Foundation, Inc.
-timestamp='2021-01-07'
+timestamp='2021-01-08'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1683,12 +1683,15 @@ kernel=
# Now, validate our (potentially fixed-up) OS.
case $os in
- # Sometimes we do "kernel-abi", so those need to count as OSes.
+ # Sometimes we do "kernel-libc", so those need to count as OSes.
musl* | newlib* | uclibc*)
;;
- # Likewise for "kernel-libc"
+ # Likewise for "kernel-abi"
eabi* | gnueabi*)
;;
+ # VxWorks passes extra cpu info in the 4th filed.
+ simlinux | simwindows | spe)
+ ;;
# Now accept the basic system types.
# The portable systems comes first.
# Each alternative MUST end in a * to match a version number.
@@ -1751,6 +1754,8 @@ kernel=
;;
kfreebsd*-gnu* | kopensolaris*-gnu*)
;;
+ vxworks-simlinux | vxworks-simwindows | vxworks-spe)
+ ;;
nto-qnx*)
;;
os2-emx)
--
Alan Third
- Files in build-aux, Alan Third, 2021/05/03
- Re: Files in build-aux, Philipp Stephani, 2021/05/03
- Re: Files in build-aux, Eli Zaretskii, 2021/05/03
- Re: Files in build-aux, Eric Abrahamsen, 2021/05/03
- Re: Files in build-aux, Eli Zaretskii, 2021/05/03
- Re: Files in build-aux,
Alan Third <=
- Re: Files in build-aux, Andreas Schwab, 2021/05/03
- Re: Files in build-aux, Eric Abrahamsen, 2021/05/03
- Re: Files in build-aux, Alan Third, 2021/05/03
- Re: Files in build-aux, Eli Zaretskii, 2021/05/04
- Re: Files in build-aux, Eli Zaretskii, 2021/05/04