add information on the system type string

This commit is contained in:
Valentin Gagarin 2023-05-11 15:51:48 +02:00
parent a8d5bb5e7e
commit 68b7bb1a06
1 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,12 @@ AC_CONFIG_AUX_DIR(config)
AC_PROG_SED
# Construct a Nix system name (like "i686-linux").
# Construct a Nix system name (like "i686-linux"):
# https://www.gnu.org/software/autoconf/manual/html_node/Canonicalizing.html#index-AC_005fCANONICAL_005fHOST-1
# The inital value is produced by the `config.guess` script:
# https://git.savannah.gnu.org/cgit/config.git/tree/config.guess
# It has the following form, which is not documented anywhere:
# <cpu>-<vendor>-<os>[<version>][-<abi>]
AC_CANONICAL_HOST
AC_MSG_CHECKING([for the canonical Nix system name])