[libvirt] [PATCH v2 0/3] PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough
This series includes Libvirt support for a new QEMU feature for the spapr (PPC64) machine, NVIDIA V100 + P9 passthrough. Refer to [1] for the version 3 of this feature (same version used as a reference for this series). v2 has a entirely different approach from the first patch [2] that simply grants IPC_LOCK to the QEMU process: - first patch is a cleanup to make it easier to insert additional logic in the code - patch 2 contains helper functions that browses the device tree at /proc/device-tree to detect if a given VFIO PCI device is using a NVLink2 bus - patch 3 includes the passthroughLimit calculation for PPC64 guests that are using NVLink2 passthrough GPUs. [1] https://patchwork.kernel.org/cover/10831413/ [2] https://www.redhat.com/archives/libvir-list/2019-February/msg00219.html Daniel Henrique Barboza (3): qemu_domain: simplify non-VFIO memLockLimit calc for PPC64 qemu_domain: NVLink2 device tree functions for PPC64 PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough src/qemu/qemu_domain.c | 245 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 234 insertions(+), 11 deletions(-) -- 2.20.1
passthroughLimit is being calculated even if usesVFIO is false. After that, a if/else conditional is used to check if we're going to sum it up with baseLimit. This patch initializes passthroughLimit to zero and always return memKB = baseLimit + passthroughLimit. The conditional is then used to calculate passthroughLimit if usesVFIO is true. This results in some cycles spared for the usesVFIO=false scenario, but the real motivation is to make the code simpler to add an alternative passthroughLimit formula for NVLink2 passthrough. Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- src/qemu/qemu_domain.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 59fe1eb401..55578f3d19 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -10366,7 +10366,7 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) unsigned long long maxMemory; unsigned long long memory; unsigned long long baseLimit; - unsigned long long passthroughLimit; + unsigned long long passthroughLimit = 0; size_t nPCIHostBridges = 0; bool usesVFIO = false; @@ -10432,15 +10432,12 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) * kiB pages, less still if the guest is mapped with hugepages (unlike * the default 32-bit DMA window, DDW windows can use large IOMMU * pages). 8 MiB is for second and further level overheads, like (b) */ - passthroughLimit = MAX(2 * 1024 * 1024 * nPCIHostBridges, - memory + - memory / 512 * nPCIHostBridges + 8192); - if (usesVFIO) - memKB = baseLimit + passthroughLimit; - else - memKB = baseLimit; + passthroughLimit = MAX(2 * 1024 * 1024 * nPCIHostBridges, + memory + + memory / 512 * nPCIHostBridges + 8192); + memKB = baseLimit + passthroughLimit; goto done; } -- 2.20.1
On Sun, Mar 03, 2019 at 10:23:12AM -0300, Daniel Henrique Barboza wrote:
passthroughLimit is being calculated even if usesVFIO is false. After that, a if/else conditional is used to check if we're going to sum it up with baseLimit.
This patch initializes passthroughLimit to zero and always return memKB = baseLimit + passthroughLimit. The conditional is then used to calculate passthroughLimit if usesVFIO is true. This results in some cycles spared for the usesVFIO=false scenario, but the real motivation is to make the code simpler to add an alternative passthroughLimit formula for NVLink2 passthrough.
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> ---
ACK to the idea, but looking at the number of lines of the PPC64 arch specific logic (I know commentaries mostly), I think it deserves a separate helper to enhance the readability. Erik
On 3/4/19 10:10 AM, Erik Skultety wrote:
On Sun, Mar 03, 2019 at 10:23:12AM -0300, Daniel Henrique Barboza wrote:
passthroughLimit is being calculated even if usesVFIO is false. After that, a if/else conditional is used to check if we're going to sum it up with baseLimit.
This patch initializes passthroughLimit to zero and always return memKB = baseLimit + passthroughLimit. The conditional is then used to calculate passthroughLimit if usesVFIO is true. This results in some cycles spared for the usesVFIO=false scenario, but the real motivation is to make the code simpler to add an alternative passthroughLimit formula for NVLink2 passthrough.
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- ACK to the idea, but looking at the number of lines of the PPC64 arch specific logic (I know commentaries mostly), I think it deserves a separate helper to enhance the readability.
You mean a 'static unsigned long long getPPC64MemLockLimit' like function that encapsulates the ppc64 logic? That can be arranged, no problem. Daniel
Erik
On Mon, Mar 04, 2019 at 11:49:54AM -0300, Daniel Henrique Barboza wrote:
On 3/4/19 10:10 AM, Erik Skultety wrote:
On Sun, Mar 03, 2019 at 10:23:12AM -0300, Daniel Henrique Barboza wrote:
passthroughLimit is being calculated even if usesVFIO is false. After that, a if/else conditional is used to check if we're going to sum it up with baseLimit.
This patch initializes passthroughLimit to zero and always return memKB = baseLimit + passthroughLimit. The conditional is then used to calculate passthroughLimit if usesVFIO is true. This results in some cycles spared for the usesVFIO=false scenario, but the real motivation is to make the code simpler to add an alternative passthroughLimit formula for NVLink2 passthrough.
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- ACK to the idea, but looking at the number of lines of the PPC64 arch specific logic (I know commentaries mostly), I think it deserves a separate helper to enhance the readability.
You mean a 'static unsigned long long getPPC64MemLockLimit' like function that encapsulates the ppc64 logic? That can be arranged, no problem.
Yep, exactly. Erik
The NVLink2 support in QEMU implements the detection of NVLink2 capable devices by verfying the attributes of the VFIO mem region QEMU allocates for the NVIDIA GPUs. To properly allocate an adequate amount of memLock, Libvirt needs this information before a QEMU instance is even created. An alternative is presented in this patch. Given a PCI device, we'll traverse the device tree at /proc/device-tree to check if the device has a NPU bridge, retrieve the node of the NVLink2 bus, find the memory-node that is related to the bus and see if it's a NVLink2 bus by inspecting its 'reg' value. This logic is contained inside the 'device_is_nvlink2_capable' function, which uses other new helper functions to navigate and fetch values from the device tree nodes. Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- src/qemu/qemu_domain.c | 188 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 55578f3d19..76e1e4b161 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -10331,6 +10331,194 @@ qemuDomainUpdateCurrentMemorySize(virDomainObjPtr vm) } +/** + * Reads a phandle file and returns the phandle value. + */ +static int read_dt_phandle(const char* file) +{ + unsigned int buf[1]; + size_t read; + FILE *f; + + f = fopen(file, "r"); + if (!f) + return -1; + + read = fread(buf, sizeof(unsigned int), 1, f); + + if (!read) { + fclose(f); + return 0; + } + + fclose(f); + return be32toh(buf[0]); +} + + +/** + * Reads a memory reg file and returns the first 4 int values. + * + * The caller is responsible for freeing the returned array. + */ +static unsigned int *read_dt_memory_reg(const char *file) +{ + unsigned int *buf; + size_t read, i; + FILE *f; + + f = fopen(file, "r"); + if (!f) + return NULL; + + buf = calloc(4, sizeof(unsigned int)); + read = fread(buf, sizeof(unsigned int), 4, f); + + if (!read && read < 4) + /* shouldn't happen */ + VIR_FREE(buf); + else for (i = 0; i < 4; i++) + buf[i] = be32toh(buf[i]); + + fclose(f); + return buf; +} + + +/** + * This wrapper function receives arguments to be used in a + * 'find' call to retrieve the file names that matches + * the criteria inside the /proc/device-tree dir. + * + * A 'find' call with '-iname phandle' inside /proc/device-tree + * provides more than a thousand matches. Adding '-path' to + * narrow it down further is necessary to keep the file + * listing sane. + * + * The caller is responsible to free the buffer returned by + * this function. + */ +static char *retrieve_dt_files_pattern(const char *path_pattern, + const char *file_pattern) +{ + virCommandPtr cmd = NULL; + char *output = NULL; + + cmd = virCommandNew("find"); + virCommandAddArgList(cmd, "/proc/device-tree/","-path", path_pattern, + "-iname", file_pattern, NULL); + virCommandSetOutputBuffer(cmd, &output); + + if (virCommandRun(cmd, NULL) < 0) + VIR_FREE(output); + + virCommandFree(cmd); + return output; +} + + +/** + * Helper function that receives a listing of file names and + * calls read_dt_phandle() on each one finding for a match + * with the given phandle argument. Returns the file name if a + * match is found, NULL otherwise. + */ +static char *find_dt_file_with_phandle(char *files, int phandle) +{ + char *line, *tmp; + int ret; + + line = strtok_r(files, "\n", &tmp); + do { + ret = read_dt_phandle(line); + if (ret == phandle) + break; + } while ((line = strtok_r(NULL, "\n", &tmp)) != NULL); + + return line; +} + + +/** + * This function receives a string that represents a PCI device, + * such as '0004:04:00.0', and tells if the device is NVLink2 capable. + * + * The logic goes as follows: + * + * 1 - get the phandle of a nvlink of the device, reading the 'ibm,npu' + * attribute; + * 2 - find the device tree node of the nvlink bus using the phandle + * found in (1) + * 3 - get the phandle of the memory region of the nvlink bus + * 4 - find the device tree node of the memory region using the + * phandle found in (3) + * 5 - read the 'reg' value of the memory region. If the value of + * the second 64 bit value is 0x02 0x00, the device is attached + * to a NVLink2 bus. + * + * If any of these steps fails, the function returns false. + */ +static bool device_is_nvlink2_capable(const char *device) +{ + char *file, *files, *tmp; + unsigned int *reg; + int phandle; + + if ((virAsprintf(&file, "/sys/bus/pci/devices/%s/of_node/ibm,npu", + device)) < 0) + return false; + + /* Find phandles of nvlinks: */ + if ((phandle = read_dt_phandle(file)) == -1) + return false; + + /* Find a DT node for the phandle found */ + files = retrieve_dt_files_pattern("*device-tree/pci*", "phandle"); + if (!files) + return false; + + if ((file = find_dt_file_with_phandle(files, phandle)) == NULL) + goto fail; + + /* Find a phandle of the GPU memory region of the device. The + * file found above ends with '/phandle' - the memory region + * of the GPU ends with '/memory-region */ + tmp = strrchr(file, '/'); + *tmp = '\0'; + file = strcat(file, "/memory-region"); + + if ((phandle = read_dt_phandle(file)) == -1) + goto fail; + + file = NULL; + VIR_FREE(files); + + /* Find the memory node for the phandle found above */ + files = retrieve_dt_files_pattern("*device-tree/memory*", "phandle"); + if (!files) + return false; + + if ((file = find_dt_file_with_phandle(files, phandle)) == NULL) + goto fail; + + /* And see its size in the second 64bit value of 'reg'. First, + * the end of the file needs to be changed from '/phandle' to + * '/reg' */ + tmp = strrchr(file, '/'); + *tmp = '\0'; + file = strcat(file, "/reg"); + + reg = read_dt_memory_reg(file); + if (reg && reg[2] == 0x20 && reg[3] == 0x00) + return true; + +fail: + VIR_FREE(files); + VIR_FREE(reg); + return false; +} + + /** * qemuDomainGetMemLockLimitBytes: * @def: domain definition -- 2.20.1
Just noticed that the functions signatures of the new functions created by this patch are mostly in one line, like: static int read_dt_phandle(...) While Libvirt code standard is the return value in the first line, then the function name after a line break: void qemuDomainUpdateCurrentMemorySize(...) I'll fix this naming stardard in the next spin. On 3/3/19 10:23 AM, Daniel Henrique Barboza wrote:
The NVLink2 support in QEMU implements the detection of NVLink2 capable devices by verfying the attributes of the VFIO mem region QEMU allocates for the NVIDIA GPUs. To properly allocate an adequate amount of memLock, Libvirt needs this information before a QEMU instance is even created.
An alternative is presented in this patch. Given a PCI device, we'll traverse the device tree at /proc/device-tree to check if the device has a NPU bridge, retrieve the node of the NVLink2 bus, find the memory-node that is related to the bus and see if it's a NVLink2 bus by inspecting its 'reg' value. This logic is contained inside the 'device_is_nvlink2_capable' function, which uses other new helper functions to navigate and fetch values from the device tree nodes.
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>Just --- src/qemu/qemu_domain.c | 188 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+)
diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 55578f3d19..76e1e4b161 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -10331,6 +10331,194 @@ qemuDomainUpdateCurrentMemorySize(virDomainObjPtr vm) }
+/** + * Reads a phandle file and returns the phandle value. + */ +static int read_dt_phandle(const char* file) +{ + unsigned int buf[1]; + size_t read; + FILE *f; + + f = fopen(file, "r"); + if (!f) + return -1; + + read = fread(buf, sizeof(unsigned int), 1, f); + + if (!read) { + fclose(f); + return 0; + } + + fclose(f); + return be32toh(buf[0]); +} + + +/** + * Reads a memory reg file and returns the first 4 int values. + * + * The caller is responsible for freeing the returned array. + */ +static unsigned int *read_dt_memory_reg(const char *file) +{ + unsigned int *buf; + size_t read, i; + FILE *f; + + f = fopen(file, "r"); + if (!f) + return NULL; + + buf = calloc(4, sizeof(unsigned int)); + read = fread(buf, sizeof(unsigned int), 4, f); + + if (!read && read < 4) + /* shouldn't happen */ + VIR_FREE(buf); + else for (i = 0; i < 4; i++) + buf[i] = be32toh(buf[i]); + + fclose(f); + return buf; +} + + +/** + * This wrapper function receives arguments to be used in a + * 'find' call to retrieve the file names that matches + * the criteria inside the /proc/device-tree dir. + * + * A 'find' call with '-iname phandle' inside /proc/device-tree + * provides more than a thousand matches. Adding '-path' to + * narrow it down further is necessary to keep the file + * listing sane. + * + * The caller is responsible to free the buffer returned by + * this function. + */ +static char *retrieve_dt_files_pattern(const char *path_pattern, + const char *file_pattern) +{ + virCommandPtr cmd = NULL; + char *output = NULL; + + cmd = virCommandNew("find"); + virCommandAddArgList(cmd, "/proc/device-tree/","-path", path_pattern, + "-iname", file_pattern, NULL); + virCommandSetOutputBuffer(cmd, &output); + + if (virCommandRun(cmd, NULL) < 0) + VIR_FREE(output); + + virCommandFree(cmd); + return output; +} + + +/** + * Helper function that receives a listing of file names and + * calls read_dt_phandle() on each one finding for a match + * with the given phandle argument. Returns the file name if a + * match is found, NULL otherwise. + */ +static char *find_dt_file_with_phandle(char *files, int phandle) +{ + char *line, *tmp; + int ret; + + line = strtok_r(files, "\n", &tmp); + do { + ret = read_dt_phandle(line); + if (ret == phandle) + break; + } while ((line = strtok_r(NULL, "\n", &tmp)) != NULL); + + return line; +} + + +/** + * This function receives a string that represents a PCI device, + * such as '0004:04:00.0', and tells if the device is NVLink2 capable. + * + * The logic goes as follows: + * + * 1 - get the phandle of a nvlink of the device, reading the 'ibm,npu' + * attribute; + * 2 - find the device tree node of the nvlink bus using the phandle + * found in (1) + * 3 - get the phandle of the memory region of the nvlink bus + * 4 - find the device tree node of the memory region using the + * phandle found in (3) + * 5 - read the 'reg' value of the memory region. If the value of + * the second 64 bit value is 0x02 0x00, the device is attached + * to a NVLink2 bus. + * + * If any of these steps fails, the function returns false. + */ +static bool device_is_nvlink2_capable(const char *device) +{ + char *file, *files, *tmp; + unsigned int *reg; + int phandle; + + if ((virAsprintf(&file, "/sys/bus/pci/devices/%s/of_node/ibm,npu", + device)) < 0) + return false; + + /* Find phandles of nvlinks: */ + if ((phandle = read_dt_phandle(file)) == -1) + return false; + + /* Find a DT node for the phandle found */ + files = retrieve_dt_files_pattern("*device-tree/pci*", "phandle"); + if (!files) + return false; + + if ((file = find_dt_file_with_phandle(files, phandle)) == NULL) + goto fail; + + /* Find a phandle of the GPU memory region of the device. The + * file found above ends with '/phandle' - the memory region + * of the GPU ends with '/memory-region */ + tmp = strrchr(file, '/'); + *tmp = '\0'; + file = strcat(file, "/memory-region"); + + if ((phandle = read_dt_phandle(file)) == -1) + goto fail; + + file = NULL; + VIR_FREE(files); + + /* Find the memory node for the phandle found above */ + files = retrieve_dt_files_pattern("*device-tree/memory*", "phandle"); + if (!files) + return false; + + if ((file = find_dt_file_with_phandle(files, phandle)) == NULL) + goto fail; + + /* And see its size in the second 64bit value of 'reg'. First, + * the end of the file needs to be changed from '/phandle' to + * '/reg' */ + tmp = strrchr(file, '/'); + *tmp = '\0'; + file = strcat(file, "/reg"); + + reg = read_dt_memory_reg(file); + if (reg && reg[2] == 0x20 && reg[3] == 0x00) + return true; + +fail: + VIR_FREE(files); + VIR_FREE(reg); + return false; +} + + /** * qemuDomainGetMemLockLimitBytes: * @def: domain definition
The NVIDIA V100 GPU has an onboard RAM that is mapped into the host memory and accessible as normal RAM via an NVLink2 bus. When passed through in a guest, QEMU puts the NVIDIA RAM window in a non-contiguous area, above the PCI MMIO area that starts at 32TiB. This means that the NVIDIA RAM window starts at 64TiB and go all the way to 128TiB. This means that the guest might request a 64-bit window, for each PCI Host Bridge, that goes all the way to 128TiB. However, the NVIDIA RAM window isn't counted as regular RAM, thus this window is considered only for the allocation of the Translation and Control Entry (TCE). This memory layout differs from the existing VFIO case, requiring its own formula. This patch changes the PPC64 code of qemuDomainGetMemLockLimitBytes to: - detect if a VFIO PCI device is using NVLink2 capabilities. This is done by using the device tree inspection mechanisms that were implemented in the previous patch; - if any device is a NVIDIA GPU using a NVLink2 bus, passthroughLimit is calculated in a different way to account for the extra memory the TCE table can alloc. The 64TiB..128TiB window is more than enough to fit all possible GPUs, thus the memLimit is the same regardless of passing through 1 or multiple V100 GPUs. Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- src/qemu/qemu_domain.c | 44 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 76e1e4b161..56b45fcfb7 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -10556,7 +10556,9 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) unsigned long long baseLimit; unsigned long long passthroughLimit = 0; size_t nPCIHostBridges = 0; - bool usesVFIO = false; + virPCIDeviceAddressPtr pciAddr; + char *pciAddrStr = NULL; + bool usesVFIO = false, nvlink2Capable = false; for (i = 0; i < def->ncontrollers; i++) { virDomainControllerDefPtr cont = def->controllers[i]; @@ -10573,8 +10575,18 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) if (dev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS && dev->source.subsys.type == VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI && dev->source.subsys.u.pci.backend == VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) { + usesVFIO = true; - break; + + pciAddr = &dev->source.subsys.u.pci.addr; + if (virPCIDeviceAddressIsValid(pciAddr, false)) { + pciAddrStr = virPCIDeviceAddressAsString(pciAddr); + + if (device_is_nvlink2_capable(pciAddrStr)) { + nvlink2Capable = true; + break; + } + } } } @@ -10601,6 +10613,32 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) 4096 * nPCIHostBridges + 8192; + /* NVLink2 support in QEMU is a special case of the passthrough + * mechanics explained in the usesVFIO case below. The GPU RAM + * is placed with a gap after maxMemory. The current QEMU + * implementation puts the NVIDIA RAM above the PCI MMIO, which + * starts at 32TiB and is the MMIO reserved for the guest main RAM. + * + * This window ends at 64TiB, and this is where the GPUs are being + * placed. The next available window size is at 128TiB, and + * 64TiB..128TiB will fit all possible NVIDIA GPUs. + * + * The same assumption as the most common case applies here: + * the guest will request a 64-bit DMA window, per PHB, that is + * big enough to map all its RAM, which is now at 128TiB due + * to the GPUs. + * + * Note that the NVIDIA RAM window must be accounted for the TCE + * table size, but *not* for the main RAM (maxMemory). This gives + * us the following passthroughLimit for the NVLink2 case: + * + * passthroughLimit = maxMemory + + * 128TiB/512KiB * #PHBs + 8 MiB */ + if (nvlink2Capable) + passthroughLimit = maxMemory + + 128 * (1ULL<<30) / 512 * nPCIHostBridges + + 8192; + /* passthroughLimit := max( 2 GiB * #PHBs, (c) * memory (d) * + memory * 1/512 * #PHBs + 8 MiB ) (e) @@ -10620,7 +10658,7 @@ qemuDomainGetMemLockLimitBytes(virDomainDefPtr def) * kiB pages, less still if the guest is mapped with hugepages (unlike * the default 32-bit DMA window, DDW windows can use large IOMMU * pages). 8 MiB is for second and further level overheads, like (b) */ - if (usesVFIO) + else if (usesVFIO) passthroughLimit = MAX(2 * 1024 * 1024 * nPCIHostBridges, memory + memory / 512 * nPCIHostBridges + 8192); -- 2.20.1
Hi,
This series was run against 'syntax-check' test by patchew.org, which failed, please find the details below:
Subject: [libvirt] [PATCH v2 0/3] PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough
Type: series
Message-id: 20190303132314.27814-1-danielhb413@gmail.com
=== TEST SCRIPT BEGIN ===
#!/bin/bash
# Testing script will be invoked under the git checkout with
# HEAD pointing to a commit that has the patches applied on top of "base"
# branch
time bash -c './autogen.sh && make syntax-check'
=== TEST SCRIPT END ===
Updating bcb55ab053bc79561b55d0394490f4b64e0f2d01
>From https://github.com/patchew-project/libvirt
- [tag update] patchew/20190301162652.32533-1-jferlan@redhat.com -> patchew/20190301162652.32533-1-jferlan@redhat.com
* [new tag] patchew/20190303132314.27814-1-danielhb413@gmail.com -> patchew/20190303132314.27814-1-danielhb413@gmail.com
Switched to a new branch 'test'
83b62e4 PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough
de8b028 qemu_domain: NVLink2 device tree functions for PPC64
b6c816a qemu_domain: simplify non-VFIO memLockLimit calc for PPC64
=== OUTPUT BEGIN ===
Updating submodules...
Submodule 'gnulib' (https://git.savannah.gnu.org/git/gnulib.git/) registered for path '.gnulib'
Submodule 'keycodemapdb' (https://gitlab.com/keycodemap/keycodemapdb.git) registered for path 'src/keycodemapdb'
Cloning into '.gnulib'...
remote: Counting objects: 88446
remote: Counting objects: 147646
remote: Counting objects: 201548, done.
remote: Compressing objects: 0% (1/26672)
remote: Compressing objects: 1% (267/26672)
remote: Compressing objects: 2% (534/26672)
remote: Compressing objects: 3% (801/26672)
remote: Compressing objects: 4% (1067/26672)
remote: Compressing objects: 5% (1334/26672)
remote: Compressing objects: 6% (1601/26672)
remote: Compressing objects: 7% (1868/26672)
remote: Compressing objects: 8% (2134/26672)
remote: Compressing objects: 9% (2401/26672)
remote: Compressing objects: 10% (2668/26672)
remote: Compressing objects: 11% (2934/26672)
remote: Compressing objects: 12% (3201/26672)
remote: Compressing objects: 13% (3468/26672)
remote: Compressing objects: 14% (3735/26672)
remote: Compressing objects: 15% (4001/26672)
remote: Compressing objects: 16% (4268/26672)
remote: Compressing objects: 17% (4535/26672)
remote: Compressing objects: 18% (4801/26672)
remote: Compressing objects: 19% (5068/26672)
remote: Compressing objects: 20% (5335/26672)
remote: Compressing objects: 21% (5602/26672)
remote: Compressing objects: 22% (5868/26672)
remote: Compressing objects: 23% (6135/26672)
remote: Compressing objects: 24% (6402/26672)
remote: Compressing objects: 25% (6668/26672)
remote: Compressing objects: 26% (6935/26672)
remote: Compressing objects: 27% (7202/26672)
remote: Compressing objects: 28% (7469/26672)
remote: Compressing objects: 29% (7735/26672)
remote: Compressing objects: 30% (8002/26672)
remote: Compressing objects: 31% (8269/26672)
remote: Compressing objects: 32% (8536/26672)
remote: Compressing objects: 33% (8802/26672)
remote: Compressing objects: 34% (9069/26672)
remote: Compressing obje
cts: 35% (9336/26672)
remote: Compressing objects: 36% (9602/26672)
remote: Compressing objects: 37% (9869/26672)
remote: Compressing objects: 38% (10136/26672)
remote: Compressing objects: 39% (10403/26672)
remote: Compressing objects: 40% (10669/26672)
remote: Compressing objects: 41% (10936/26672)
remote: Compressing objects: 42% (11203/26672)
remote: Compressing objects: 43% (11469/26672)
remote: Compressing objects: 44% (11736/26672)
remote: Compressing objects: 45% (12003/26672)
remote: Compressing objects: 46% (12270/26672)
remote: Compressing objects: 47% (12536/26672)
remote: Compressing objects: 48% (12803/26672)
remote: Compressing objects: 49% (13070/26672)
remote: Compressing objects: 50% (13336/26672)
remote: Compressing objects: 51% (13603/26672)
remote: Compressing objects: 52% (13870/26672)
remote: Compressing objects: 53% (14137/26672)
remote: Compressing objects: 54% (14403/26672)
remote: Compressing objects: 55% (14670/26672)
remote: Compressing objects: 56% (14937/26672)
remote: Compressing objects: 57% (15204/26672)
remote: Compressing objects: 58% (15470/26672)
remote: Compressing objects: 59% (15737/26672)
remote: Compressing objects: 60% (16004/26672)
remote: Compressing objects: 61% (16270/26672)
remote: Compressing objects: 62% (16537/26672)
remote: Compressing objects: 63% (16804/26672)
remote: Compressing objects: 64% (17071/26672)
remote: Compressing objects: 65% (17337/26672)
remote: Compressing objects: 66% (17604/26672)
remote: Compressing objects: 67% (17871/26672)
remote: Compressing objects: 68% (18137/26672)
remote: Compressing objects: 69% (18404/26672)
remote: Co
mpressing objects: 70% (18671/26672)
remote: Compressing objects: 71% (18938/26672)
remote: Compressing objects: 72% (19204/26672)
remote: Compressing objects: 73% (19471/26672)
remote: Compressing objects: 74% (19738/26672)
remote: Compressing objects: 75% (20004/26672)
remote: Compressing objects: 76% (20271/26672)
remote: Compressing objects: 77% (20538/26672)
remote: Compressing objects: 78% (20805/26672)
remote: Compressing objects: 79% (21071/26672)
remote: Compressing objects: 80% (21338/26672)
remote: Compressing objects: 81% (21605/26672)
remote: Compressing objects: 82% (21872/26672)
remote: Compressing objects: 83% (22138/26672)
remote: Compressing objects: 84% (22405/26672)
remote: Compressing objects: 85% (22672/26672)
remote: Compressing objects: 86% (22938/26672)
remote: Compressing objects: 87% (23205/26672)
remote: Compressing objects: 88% (23472/26672)
remote: Compressing objects: 89% (23739/26672)
remote: Compressing objects: 90% (24005/26672)
remote: Compressing objects: 91% (24272/26672)
remote: Compressing objects: 92% (24539/26672)
remote: Compressing objects: 93% (24805/26672)
remote: Compressing objects: 94% (25072/26672)
remote: Compressing objects: 95% (25339/26672)
remote: Compressing objects: 96% (25606/26672)
remote: Compressing objects: 97% (25872/26672)
remote: Compressing objects: 98% (26139/26672)
remote: Compressing objects: 99% (26406/26672)
remote: Compressing objects: 100% (26672/26672)
remote: Compressing objects: 100% (26672/26672), done.
Receiving objects: 0% (1/201548)
Receiving objects: 1% (2016/201548)
Receiving objects: 2% (4031/201548)
Receiving objects: 3% (6047/201548)
Receiving objects: 4% (8062/201548)
Receiving objects: 5% (10078/201548)
Receiving objects: 6% (12093/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 7% (14109/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 8% (16124/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 9% (18140/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 10% (20155/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 11% (22171/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 11% (23124/201548), 2.81 MiB | 5.61 MiB/s
Receiving objects: 12% (24186/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 13% (26202/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 14% (28217/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 15% (30233/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 16% (32248/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 17% (34264/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 18% (36279/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 19% (38295/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 20% (40310/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 21% (42326/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 22% (44341/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 23% (46357/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 24% (48372/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 25% (50387/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 26% (52403/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 27% (54418/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 28% (56434/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 29% (58449/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 30% (60465/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 31% (62480/201548), 8.61 MiB | 8.59 MiB/s
Receiving objects: 32% (64496/201548), 8.61 MiB
| 8.59 MiB/s
Receiving objects: 33% (66511/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 34% (68527/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 35% (70542/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 36% (72558/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 37% (74573/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 38% (76589/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 39% (78604/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 40% (80620/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 41% (82635/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 41% (84422/201548), 15.34 MiB | 10.21 MiB/s
Receiving objects: 42% (84651/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 43% (86666/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 44% (88682/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 45% (90697/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 46% (92713/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 47% (94728/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 48% (96744/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 49% (98759/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 50% (100774/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 51% (102790/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 52% (104805/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 53% (106821/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 54% (108836/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 55% (110852/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 56% (112867/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 57% (114883/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 58% (116898/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 59% (118914/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 60% (120929/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 61% (122945/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 62% (12496
0/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 63% (126976/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 64% (128991/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 65% (131007/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 66% (133022/201548), 20.00 MiB | 9.98 MiB/s
Receiving objects: 67% (135038/201548), 27.58 MiB | 11.01 MiB/s
Receiving objects: 68% (137053/201548), 27.58 MiB | 11.01 MiB/s
Receiving objects: 69% (139069/201548), 27.58 MiB | 11.01 MiB/s
Receiving objects: 69% (139769/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 70% (141084/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 71% (143100/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 72% (145115/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 73% (147131/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 74% (149146/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 75% (151161/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 76% (153177/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 77% (155192/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 78% (157208/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 79% (159223/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 80% (161239/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 81% (163254/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 82% (165270/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 83% (167285/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 84% (169301/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 85% (171316/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 86% (173332/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 87% (175347/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 88% (177363/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 89% (179378/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 90% (181394/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 91% (183409/201548), 32
.01 MiB | 10.65 MiB/s
Receiving objects: 92% (185425/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 93% (187440/201548), 32.01 MiB | 10.65 MiB/s
Receiving objects: 94% (189456/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 95% (191471/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 96% (193487/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 97% (195502/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 98% (197518/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 99% (199533/201548), 38.75 MiB | 11.05 MiB/s
remote: Total 201548 (delta 174810), reused 201548 (delta 174810)
Receiving objects: 100% (201548/201548), 38.75 MiB | 11.05 MiB/s
Receiving objects: 100% (201548/201548), 39.90 MiB | 11.05 MiB/s, done.
Resolving deltas: 0% (0/174810)
Resolving deltas: 1% (1852/174810)
Resolving deltas: 2% (3837/174810)
Resolving deltas: 3% (5260/174810)
Resolving deltas: 4% (7003/174810)
Resolving deltas: 5% (8751/174810)
Resolving deltas: 6% (10553/174810)
Resolving deltas: 7% (12698/174810)
Resolving deltas: 8% (13991/174810)
Resolving deltas: 9% (15804/174810)
Resolving deltas: 10% (18060/174810)
Resolving deltas: 11% (19629/174810)
Resolving deltas: 12% (21072/174810)
Resolving deltas: 13% (22989/174810)
Resolving deltas: 14% (24659/174810)
Resolving deltas: 15% (27495/174810)
Resolving deltas: 16% (28183/174810)
Resolving deltas: 17% (29839/174810)
Resolving deltas: 18% (31704/174810)
Resolving deltas: 19% (33226/174810)
Resolving deltas: 20% (35186/174810)
Resolving deltas: 21% (36898/174810)
Resolving deltas: 22% (38528/174810)
Resolving deltas: 23% (40276/174810)
Resolving deltas: 24% (42298/174810)
Resolving deltas: 25% (44871/174810)
Resolving deltas: 26% (45697/174810)
Resolving deltas: 27% (47247/174810)
Resolving deltas: 28% (48973/174810)
Resolving deltas: 29% (50708/174810)
Resolving deltas: 30% (52809/174810)
Resolving deltas: 31% (54375/174810)
Resolving deltas: 32% (56273/174810)
Resolving deltas: 33% (58167/174810)
Resolving deltas: 34% (59549/174810)
Resolving deltas: 35% (61278/174810)
Resolving deltas: 36% (63065/174810)
Resolving deltas: 37% (64727/174810)
Resolving deltas: 38% (66616/174810)
Resolving deltas: 39% (68188/174810)
Resolving deltas: 40% (69964/174810)
Resolving deltas: 41% (71689/174810)
Resolving deltas: 41% (72090/174810)
Resolving deltas: 42% (73428/174810)
Resolving deltas: 43% (75197/174810)
Resolving deltas: 44% (76919/174810)
Resolving deltas: 45% (78672/174810)
Resolving deltas: 46% (80426/174810)
Resolving deltas: 47% (82399/174810)
Resolving deltas: 48% (83929/174810)
Resolvi
ng deltas: 49% (85695/174810)
Resolving deltas: 50% (87408/174810)
Resolving deltas: 51% (89206/174810)
Resolving deltas: 52% (90912/174810)
Resolving deltas: 53% (92680/174810)
Resolving deltas: 54% (94478/174810)
Resolving deltas: 55% (96152/174810)
Resolving deltas: 56% (97940/174810)
Resolving deltas: 57% (99645/174810)
Resolving deltas: 58% (101419/174810)
Resolving deltas: 59% (103155/174810)
Resolving deltas: 60% (104934/174810)
Resolving deltas: 60% (105333/174810)
Resolving deltas: 61% (106771/174810)
Resolving deltas: 62% (108405/174810)
Resolving deltas: 63% (110191/174810)
Resolving deltas: 64% (111961/174810)
Resolving deltas: 65% (113627/174810)
Resolving deltas: 66% (115421/174810)
Resolving deltas: 67% (117132/174810)
Resolving deltas: 68% (118913/174810)
Resolving deltas: 69% (120644/174810)
Resolving deltas: 70% (122385/174810)
Resolving deltas: 71% (124154/174810)
Resolving deltas: 72% (125866/174810)
Resolving deltas: 73% (127613/174810)
Resolving deltas: 74% (129360/174810)
Resolving deltas: 75% (131132/174810)
Resolving deltas: 76% (132868/174810)
Resolving deltas: 77% (134663/174810)
Resolving deltas: 78% (136352/174810)
Resolving deltas: 79% (138110/174810)
Resolving deltas: 80% (139898/174810)
Resolving deltas: 81% (141632/174810)
Resolving deltas: 82% (143364/174810)
Resolving deltas: 83% (145161/174810)
Resolving deltas: 84% (146871/174810)
Resolving deltas: 85% (148598/174810)
Resolving deltas: 86% (150382/174810)
Resolving deltas: 87% (152092/174810)
Resolving deltas: 87% (153507/174810)
Resolving deltas: 88% (155552/174810)
Resolving deltas: 89% (155618/174810)
Resolving deltas: 90% (157408/174810)
Resolving deltas: 91% (160056/174810)
Resolving deltas: 92% (161053/174810)
Resolving deltas: 93% (162879/174810)
Resolving deltas: 94% (164589/174810)
Resolving deltas: 95% (166312/174810)
Resolv
ing deltas: 96% (167834/174810)
Resolving deltas: 98% (171429/174810)
Resolving deltas: 100% (174810/174810)
Resolving deltas: 100% (174810/174810), done.
Submodule path '.gnulib': checked out '8089c00979a5b089cff592c6b91420e595657167'
Cloning into 'src/keycodemapdb'...
remote: Enumerating objects: 297, done.
remote: Counting objects: 0% (1/297)
remote: Counting objects: 1% (3/297)
remote: Counting objects: 2% (6/297)
remote: Counting objects: 3% (9/297)
remote: Counting objects: 4% (12/297)
remote: Counting objects: 5% (15/297)
remote: Counting objects: 6% (18/297)
remote: Counting objects: 7% (21/297)
remote: Counting objects: 8% (24/297)
remote: Counting objects: 9% (27/297)
remote: Counting objects: 10% (30/297)
remote: Counting objects: 11% (33/297)
remote: Counting objects: 12% (36/297)
remote: Counting objects: 13% (39/297)
remote: Counting objects: 14% (42/297)
remote: Counting objects: 15% (45/297)
remote: Counting objects: 16% (48/297)
remote: Counting objects: 17% (51/297)
remote: Counting objects: 18% (54/297)
remote: Counting objects: 19% (57/297)
remote: Counting objects: 20% (60/297)
remote: Counting objects: 21% (63/297)
remote: Counting objects: 22% (66/297)
remote: Counting objects: 23% (69/297)
remote: Counting objects: 24% (72/297)
remote: Counting objects: 25% (75/297)
remote: Counting objects: 26% (78/297)
remote: Counting objects: 27% (81/297)
remote: Counting objects: 28% (84/297)
remote: Counting objects: 29% (87/297)
remote: Counting objects: 30% (90/297)
remote: Counting objects: 31% (93/297)
remote: Counting objects: 32% (96/297)
remote: Counting objects: 33% (99/297)
remote: Counting objects: 34% (101/297)
remote: Counting objects: 35% (104/297)
remote: Counting objects: 36% (107/297)
remote: Counting objects: 37% (110/297)
remote: Counting objects: 38% (113/297)
remote: Counting objects: 39% (116/297)
remote
: Counting objects: 40% (119/297)
remote: Counting objects: 41% (122/297)
remote: Counting objects: 42% (125/297)
remote: Counting objects: 43% (128/297)
remote: Counting objects: 44% (131/297)
remote: Counting objects: 45% (134/297)
remote: Counting objects: 46% (137/297)
remote: Counting objects: 47% (140/297)
remote: Counting objects: 48% (143/297)
remote: Counting objects: 49% (146/297)
remote: Counting objects: 50% (149/297)
remote: Counting objects: 51% (152/297)
remote: Counting objects: 52% (155/297)
remote: Counting objects: 53% (158/297)
remote: Counting objects: 54% (161/297)
remote: Counting objects: 55% (164/297)
remote: Counting objects: 56% (167/297)
remote: Counting objects: 57% (170/297)
remote: Counting objects: 58% (173/297)
remote: Counting objects: 59% (176/297)
remote: Counting objects: 60% (179/297)
remote: Counting objects: 61% (182/297)
remote: Counting objects: 62% (185/297)
remote: Counting objects: 63% (188/297)
remote: Counting objects: 64% (191/297)
remote: Counting objects: 65% (194/297)
remote: Counting objects: 66% (197/297)
remote: Counting objects: 67% (199/297)
remote: Counting objects: 68% (202/297)
remote: Counting objects: 69% (205/297)
remote: Counting objects: 70% (208/297)
remote: Counting objects: 71% (211/297)
remote: Counting objects: 72% (214/297)
remote: Counting objects: 73% (217/297)
remote: Counting objects: 74% (220/297)
remote: Counting objects: 75% (223/297)
remote: Counting objects: 76% (226/297)
remote: Counting objects: 77% (229/297)
remote: Counting objects: 78% (232/297)
remote: Counting objects:
79% (235/297)
remote: Counting objects: 80% (238/297)
remote: Counting objects: 81% (241/297)
remote: Counting objects: 82% (244/297)
remote: Counting objects: 83% (247/297)
remote: Counting objects: 84% (250/297)
remote: Counting objects: 85% (253/297)
remote: Counting objects: 86% (256/297)
remote: Counting objects: 87% (259/297)
remote: Counting objects: 88% (262/297)
remote: Counting objects: 89% (265/297)
remote: Counting objects: 90% (268/297)
remote: Counting objects: 91% (271/297)
remote: Counting objects: 92% (274/297)
remote: Counting objects: 93% (277/297)
remote: Counting objects: 94% (280/297)
remote: Counting objects: 95% (283/297)
remote: Counting objects: 96% (286/297)
remote: Counting objects: 97% (289/297)
remote: Counting objects: 98% (292/297)
remote: Counting objects: 99% (295/297)
remote: Counting objects: 100% (297/297)
remote: Counting objects: 100% (297/297), done.
remote: Compressing objects: 0% (1/112)
remote: Compressing objects: 1% (2/112)
remote: Compressing objects: 2% (3/112)
remote: Compressing objects: 3% (4/112)
remote: Compressing objects: 4% (5/112)
remote: Compressing objects: 5% (6/112)
remote: Compressing objects: 6% (7/112)
remote: Compressing objects: 7% (8/112)
remote: Compressing objects: 8% (9/112)
remote: Compressing objects: 9% (11/112)
remote: Compressing objects: 10% (12/112)
remote: Compressing objects: 11% (13/112)
remote: Compressing objects: 12% (14/112)
remote: Compressing objects: 13% (15/112)
remote: Compressing objects: 14% (16/112)
remote: Compressing objects: 15% (17/112)
remote: Compressing objects: 16% (18/112)
remote: Compressing objects: 17% (20/112)
remote: Compressing objects: 18% (21/112)
remote: Compressing objects: 19% (22/112)
remote: Compressing objects: 20% (23/112)
remote: Compressing objects: 21% (24/112)
remote: Compressing objects: 22% (25/112)
remote: Compressing objects: 23% (26/112)
remote: Compressing objects: 24% (27/112)
remote: Compressing objects: 25% (28/112)
remote: Compressing objects: 26% (30/112)
remote: Compressing objects: 27% (31/112)
remote: Compressing objects: 28% (32/112)
remote: Compressing objects: 29% (33/112)
remote: Compressing objects: 30% (34/112)
remote: Compressing objects: 31% (35/112)
remote: Compressing objects: 32% (36/112)
remote: Compressing objects: 33% (37/112)
remote: Compressing objects: 34% (39/112)
remote: Compressing objects: 35% (40/112)
remote: Compressing objects: 36% (41/112)
remote: Compressing objects: 37% (42/112)
remot
e: Compressing objects: 38% (43/112)
remote: Compressing objects: 39% (44/112)
remote: Compressing objects: 40% (45/112)
remote: Compressing objects: 41% (46/112)
remote: Compressing objects: 42% (48/112)
remote: Compressing objects: 43% (49/112)
remote: Compressing objects: 44% (50/112)
remote: Compressing objects: 45% (51/112)
remote: Compressing objects: 46% (52/112)
remote: Compressing objects: 47% (53/112)
remote: Compressing objects: 48% (54/112)
remote: Compressing objects: 49% (55/112)
remote: Compressing objects: 50% (56/112)
remote: Compressing objects: 51% (58/112)
remote: Compressing objects: 52% (59/112)
remote: Compressing objects: 53% (60/112)
remote: Compressing objects: 54% (61/112)
remote: Compressing objects: 55% (62/112)
remote: Compressing objects: 56% (63/112)
remote: Compressing objects: 57% (64/112)
remote: Compressing objects: 58% (65/112)
remote: Compressing objects: 59% (67/112)
remote: Compressing objects: 60% (68/112)
remote: Compressing objects: 61% (69/112)
remote: Compressing objects: 62% (70/112)
remote: Compressing objects: 63% (71/112)
remote: Compressing objects: 64% (72/112)
remote: Compressing objects: 65% (73/112)
remote: Compressing objects: 66% (74/112)
remote: Compressing objects: 67% (76/112)
remote: Compressing objects: 68% (77/112)
remote: Compressing objects: 69% (78/112)
remote: Compressing objects: 70% (79/112)
remote: Compressing objects: 71% (80/112)
remote: Compressing objects: 72% (81/112)
remote: Compressing objects: 73% (82/112)
remote: Compressing objects: 74% (83/112)
remote: Compressing objects: 75% (84/112)
r
emote: Compressing objects: 76% (86/112)
remote: Compressing objects: 77% (87/112)
remote: Compressing objects: 78% (88/112)
remote: Compressing objects: 79% (89/112)
remote: Compressing objects: 80% (90/112)
remote: Compressing objects: 81% (91/112)
remote: Compressing objects: 82% (92/112)
remote: Compressing objects: 83% (93/112)
remote: Compressing objects: 84% (95/112)
remote: Compressing objects: 85% (96/112)
remote: Compressing objects: 86% (97/112)
remote: Compressing objects: 87% (98/112)
remote: Compressing objects: 88% (99/112)
remote: Compressing objects: 89% (100/112)
remote: Compressing objects: 90% (101/112)
remote: Compressing objects: 91% (102/112)
remote: Compressing objects: 92% (104/112)
remote: Compressing objects: 93% (105/112)
remote: Compressing objects: 94% (106/112)
remote: Compressing objects: 95% (107/112)
remote: Compressing objects: 96% (108/112)
remote: Compressing objects: 97% (109/112)
remote: Compressing objects: 98% (110/112)
remote: Compressing objects: 99% (111/112)
remote: Compressing objects: 100% (112/112)
remote: Compressing objects: 100% (112/112), done.
Receiving objects: 0% (1/297)
Receiving objects: 1% (3/297)
Receiving objects: 2% (6/297)
Receiving objects: 3% (9/297)
Receiving objects: 4% (12/297)
Receiving objects: 5% (15/297)
Receiving objects: 6% (18/297)
Receiving objects: 7% (21/297)
Receiving objects: 8% (24/297)
Receiving objects: 9% (27/297)
Receiving objects: 10% (30/297)
Receiving objects: 11% (33/297)
Receiving objects: 12% (36/297)
Receiving objects: 13% (39/297)
Receiving objects: 14% (42/297)
Receiving objects: 15% (45/297)
Receiving objects: 16% (48/297)
Receiving objects: 17% (51/297)
Receiving objects: 18% (54/297)
Receiving objects: 19% (57/297)
Receiving objects: 20% (60/297)
Receiving objects: 21% (63/297)
Receiving objects: 22% (66/297)
Receiving objects: 23% (69/297)
Receiving objects: 24% (72/297)
Receiving objects: 25% (75/297)
Receiving objects: 26% (78/297)
Receiving objects: 27% (81/297)
Receiving objects: 28% (84/297)
Receiving objects: 29% (87/297)
Receiving objects: 30% (90/297)
Receiving objects: 31% (93/297)
Receiving objects: 32% (96/297)
Receiving objects: 33% (99/297)
Receiving objects: 34% (101/297)
Receiving objects: 35% (104/297)
Receiving objects: 36% (107/297)
Receiving objects: 37% (110/297)
Receiving objects: 38% (113/297)
Receiving objects: 39% (116/297)
Receiving objects: 40% (119/297)
Receiving objects: 41% (122/297)
Receiving objects: 42% (125/297)
Receiving objects: 43% (128/297)
Receiving objects: 44% (131/297)
Receiving objects: 45% (134/297)
remote: Total 297 (delta 146), reused 280 (delta 138)
Receiving objects: 46% (137/297)
Receiving objects: 47% (140/297)
Receiving objects: 48% (143/297)
Receiving objects: 49% (146/297)
Receiving objects: 50% (149/297)
Receiving objects: 51% (152/297)
Receiving objects: 52% (155/297)
Receiving objects: 53% (158/297)
Receiving objects: 54% (161/297)
Receiving objects: 55% (164/297)
Receiving objects: 56% (167/297)
Receiving objects: 57% (170/297)
Receiving objects: 58% (173/297)
Receiving objects: 59% (176/297)
Receiving objects: 60% (179/297)
Receiving objects: 61% (182/297)
Receiving objects: 62% (185/297)
Receiving objects: 63% (188/297)
Receiving objects: 64% (191/297)
Receiving objects: 65% (194/297)
Receiving objects: 66% (197/297)
Receiving objects: 67% (199/297)
Receiving objects: 68% (202/297)
Receiving objects: 69% (205/297)
Receiving objects: 70% (208/297)
Receiving objects: 71% (211/297)
Receiving objects: 72% (214/297)
Receiving objects: 73% (217/297)
Receiving objects: 74% (220/297)
Receiving objects: 75% (223/297)
Receiving objects: 76% (226/297)
Receiving objects: 77% (229/297)
Receiving objects: 78% (232/297)
Receiving objects: 79% (235/297)
Receiving objects: 80% (238/297)
Receiving objects: 81% (241/297)
Receiving objects: 82% (244/297)
Receiving objects: 83% (247/297)
Receiving objects: 84% (250/297)
Receiving objects: 85% (253/297)
Receiving objects: 86% (256/297)
Receiving objects: 87% (259/297)
Receiving objects: 88% (262/297)
Receiving objects: 89% (265/297)
Receiving objects: 90% (268/297)
Receiving objects: 91% (271/297)
Receiving objects: 92% (274/297)
Receiving objects: 93% (277/297)
Receiving objects: 94% (280/297)
Receiving objects: 95% (283/297)
Receiving objects: 96% (286/297)
Receiving objects: 97% (289/297)
Receiving objects: 98% (292/297)
Receiving objects: 99% (295/297)
Receiving objects: 100% (297/297)
Receiving obj
ects: 100% (297/297), 94.17 KiB | 0 bytes/s, done.
Resolving deltas: 0% (0/146)
Resolving deltas: 5% (8/146)
Resolving deltas: 11% (17/146)
Resolving deltas: 14% (21/146)
Resolving deltas: 34% (51/146)
Resolving deltas: 47% (69/146)
Resolving deltas: 56% (82/146)
Resolving deltas: 61% (90/146)
Resolving deltas: 62% (91/146)
Resolving deltas: 63% (93/146)
Resolving deltas: 89% (130/146)
Resolving deltas: 100% (146/146)
Resolving deltas: 100% (146/146), done.
Submodule path 'src/keycodemapdb': checked out '16e5b0787687d8904dad2c026107409eb9bfcb95'
Running bootstrap...
./bootstrap: Bootstrapping from checked-out libvirt sources...
./bootstrap: consider installing git-merge-changelog from gnulib
./bootstrap: getting gnulib files...
running: libtoolize --install --copy
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'.
libtoolize: copying file `build-aux/config.guess'
libtoolize: copying file `build-aux/config.sub'
libtoolize: copying file `build-aux/install-sh'
libtoolize: copying file `build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
./bootstrap: .gnulib/gnulib-tool --no-changelog --aux-dir=build-aux --doc-base=doc --lib=libgnu --m4-base=m4/ --source-base=gnulib/lib/ --tests-base=gnulib/tests --local-dir=gnulib/local --lgpl=2 --with-tests --makefile-name=gnulib.mk --avoid=pt_chown --avoid=lock-tests --libtool --import ...
Module list with included dependencies (indented):
absolute-header
accept
accept-tests
alloca
alloca-opt
alloca-opt-tests
allocator
areadlink
areadlink-tests
arpa_inet
arpa_inet-tests
assure
autobuild
base64
base64-tests
binary-io
binary-io-tests
bind
bind-tests
bitrotate
bitrotate-tests
btowc
btowc-tests
builtin-expect
byteswap
byteswap-tests
c-ctype
c-ctype-tests
c-strcase
c-strcase-tests
c-strcasestr
c-strcasestr-tests
calloc-posix
canonicalize-lgpl
canonicalize-lgpl-tests
careadlinkat
chown
chown-tests
clock-time
cloexec
cloexec-tests
close
close-tests
configmake
connect
connect-tests
count-leading-zeros
count-leading-zeros-tests
count-one-bits
count-one-bits-tests
ctype
ctype-tests
dirname-lgpl
dosname
double-slash-root
dup
dup-tests
dup2
dup2-tests
environ
environ-tests
errno
errno-tests
error
execinfo
exitfail
extensions
extern-inline
fatal-signal
fclose
fclose-tests
fcntl
fcntl-h
fcntl-h-tests
fcntl-tests
fd-hook
fdatasync
fdatasync-tests
fdopen
fdopen-tests
fflush
fflush-tests
ffs
ffs-tests
ffsl
ffsl-tests
fgetc-tests
filename
flexmember
float
float-tests
fnmatch
fnmatch-h
fnmatch-h-tests
fnmatch-tests
fpieee
fpucw
fpurge
fpurge-tests
fputc-tests
fread-tests
freading
freading-tests
fseek
fseek-tests
fseeko
fseeko-tests
fstat
fstat-tests
fsync
fsync-tests
ftell
ftell-tests
ftello
ftello-tests
ftruncate
ftruncate-tests
func
func-tests
fwrite-tests
getaddrinfo
getaddrinfo-tests
getcwd-lgpl
getcwd-lgpl-tests
getdelim
getdelim-tests
getdtablesize
getdtablesize-tests
getgroups
getgroups-tests
gethostname
gethostname-tests
getline
getline-tests
getopt-posix
getopt-posix-tests
getpagesize
getpass
getpeername
getpeername-tests
getprogname
getprogname-tests
getsockname
getsockname-tests
getsockopt
getsockopt-tests
gettext-h
gettimeofday
gettimeofday-tests
getugroups
gitlog-to-changelog
gnumakefile
grantpt
grantpt-tests
hard-locale
havelib
hostent
ignore-value
ignore-value-tests
include_next
inet_ntop
inet_ntop-tests
inet_pton
inet_pton-tests
intprops
intprops-tests
inttypes
inttypes-incomplete
inttypes-tests
ioctl
ioctl-tests
isatty
isatty-tests
isblank
isblank-tests
isnand-nolibm
isnand-nolibm-tests
isnanf-nolibm
isnanf-nolibm-tests
isnanl-nolibm
isnanl-nolibm-tests
langinfo
langinfo-tests
largefile
ldexp
ldexp-tests
libc-config
limits-h
limits-h-tests
listen
listen-tests
localcharset
localcharset-tests
locale
locale-tests
localeconv
localeconv-tests
localename
localename-tests
localtime-buffer
lock
lseek
lseek-tests
lstat
lstat-tests
maintainer-makefile
malloc-posix
malloca
malloca-tests
manywarnings
math
math-tests
mbrtowc
mbrtowc-tests
mbsinit
mbsinit-tests
mbsrtowcs
mbsrtowcs-tests
mbtowc
memchr
memchr-tests
mgetgroups
mkdir
mkdir-tests
mkdtemp
mkostemp
mkostemps
mktempd
mktime
mktime-internal
msvc-inval
msvc-nothrow
multiarch
nanosleep
nanosleep-tests
net_if
net_if-tests
netdb
netdb-tests
netinet_in
netinet_in-tests
nl_langinfo
nl_langinfo-tests
nocrash
nonblocking
nonblocking-pipe-tests
nonblocking-socket-tests
nonblocking-tests
open
open-tests
openpty
openpty-tests
passfd
passfd-tests
pathmax
pathmax-tests
perror
perror-tests
physmem
pipe-posix
pipe-posix-tests
pipe2
pipe2-tests
poll
poll-h
poll-h-tests
poll-tests
posix-shell
posix_openpt
posix_openpt-tests
posix_spawn-internal
posix_spawn_file_actions_addclose
posix_spawn_file_actions_addclose-tests
posix_spawn_file_actions_adddup2
posix_spawn_file_actions_adddup2-tests
posix_spawn_file_actions_addopen
posix_spawn_file_actions_addopen-tests
posix_spawn_file_actions_destroy
posix_spawn_file_actions_init
posix_spawnattr_destroy
posix_spawnattr_init
posix_spawnattr_setflags
posix_spawnattr_setsigmask
posix_spawnp
posix_spawnp-tests
pthread
pthread_sigmask
pthread_sigmask-tests
ptsname
ptsname-tests
ptsname_r
ptsname_r-tests
pty
pty-tests
putenv
raise
raise-tests
rawmemchr
rawmemchr-tests
read
read-tests
readlink
readlink-tests
realloc-posix
recv
recv-tests
regex
regex-tests
same-inode
sched
sched-tests
secure_getenv
select
select-tests
send
send-tests
servent
setenv
setenv-tests
setlocale
setlocale-tests
setsockopt
setsockopt-tests
sh-filename
sigaction
sigaction-tests
signal-h
signal-h-tests
signbit
signbit-tests
sigpipe
sigpipe-tests
sigprocmask
sigprocmask-tests
size_max
sleep
sleep-tests
snippet/_Noreturn
snippet/arg-nonnull
snippet/c++defs
snippet/unused-parameter
snippet/warn-on-use
snprintf
snprintf-tests
socket
socketlib
sockets
sockets-tests
socklen
spawn
spawn-tests
ssize_t
stat
stat-tests
stat-time
stat-time-tests
stdalign
stdalign-tests
stdarg
stdbool
stdbool-tests
stddef
stddef-tests
stdint
stdint-tests
stdio
stdio-tests
stdlib
stdlib-tests
stpcpy
strcase
strchrnul
strchrnul-tests
strdup-posix
streq
strerror
strerror-override
strerror-tests
strerror_r-posix
strerror_r-posix-tests
string
string-tests
strings
strings-tests
strndup
strnlen
strnlen-tests
strnlen1
strptime
strsep
strtok_r
symlink
symlink-tests
sys_ioctl
sys_ioctl-tests
sys_select
sys_select-tests
sys_socket
sys_socket-tests
sys_stat
sys_stat-tests
sys_time
sys_time-tests
sys_types
sys_types-tests
sys_uio
sys_uio-tests
sys_utsname
sys_utsname-tests
sys_wait
sys_wait-tests
tempname
termios
termios-tests
test-framework-sh
test-framework-sh-tests
thread
thread-tests
threadlib
time
time-tests
time_r
timegm
ttyname_r
ttyname_r-tests
uname
uname-tests
unistd
unistd-tests
unitypes
uniwidth/base
uniwidth/width
uniwidth/width-tests
unlockpt
unlockpt-tests
unsetenv
unsetenv-tests
useless-if-before-free
usleep
usleep-tests
vasnprintf
vasnprintf-tests
vasprintf
vasprintf-tests
vc-list-files
vc-list-files-tests
verify
verify-tests
vsnprintf
vsnprintf-tests
wait-process
waitpid
warnings
wchar
wchar-tests
wcrtomb
wcrtomb-tests
wctob
wctomb
wctype-h
wctype-h-tests
wcwidth
wcwidth-tests
write
write-tests
xalloc
xalloc-die
xalloc-die-tests
xalloc-oversized
xsize
Notice from module vasprintf:
If you are using GNU gettext version 0.16.1 or older, add the following options
to XGETTEXT_OPTIONS in your po/Makevars:
--flag=asprintf:2:c-format --flag=vasprintf:2:c-format
File list:
build-aux/config.rpath
build-aux/gitlog-to-changelog
build-aux/mktempd
build-aux/useless-if-before-free
build-aux/vc-list-files
lib/_Noreturn.h
lib/accept.c
lib/alloca.c
lib/alloca.in.h
lib/allocator.c
lib/allocator.h
lib/areadlink.c
lib/areadlink.h
lib/arg-nonnull.h
lib/arpa_inet.in.h
lib/asnprintf.c
lib/asprintf.c
lib/assure.h
lib/base64.c
lib/base64.h
lib/basename-lgpl.c
lib/binary-io.c
lib/binary-io.h
lib/bind.c
lib/bitrotate.c
lib/bitrotate.h
lib/btowc.c
lib/byteswap.in.h
lib/c++defs.h
lib/c-ctype.c
lib/c-ctype.h
lib/c-strcase.h
lib/c-strcasecmp.c
lib/c-strcasestr.c
lib/c-strcasestr.h
lib/c-strncasecmp.c
lib/calloc.c
lib/canonicalize-lgpl.c
lib/careadlinkat.c
lib/careadlinkat.h
lib/cdefs.h
lib/chown.c
lib/cloexec.c
lib/cloexec.h
lib/close.c
lib/connect.c
lib/count-leading-zeros.c
lib/count-leading-zeros.h
lib/count-one-bits.c
lib/count-one-bits.h
lib/dirname-lgpl.c
lib/dirname.h
lib/dosname.h
lib/dup2.c
lib/errno.in.h
lib/execinfo.c
lib/execinfo.in.h
lib/fchown-stub.c
lib/fclose.c
lib/fcntl.c
lib/fcntl.in.h
lib/fd-hook.c
lib/fd-hook.h
lib/fdatasync.c
lib/fflush.c
lib/ffs.c
lib/ffsl.c
lib/ffsl.h
lib/filename.h
lib/flexmember.h
lib/float+.h
lib/float.c
lib/float.in.h
lib/fnmatch.c
lib/fnmatch.in.h
lib/fnmatch_loop.c
lib/fpurge.c
lib/freading.c
lib/freading.h
lib/fseek.c
lib/fseeko.c
lib/fstat.c
lib/fsync.c
lib/ftell.c
lib/ftello.c
lib/gai_strerror.c
lib/getaddrinfo.c
lib/getcwd-lgpl.c
lib/getdelim.c
lib/getdtablesize.c
lib/getgroups.c
lib/gethostname.c
lib/getline.c
lib/getopt-cdefs.in.h
lib/getopt-core.h
lib/getopt-ext.h
lib/getopt-pfx-core.h
lib/getopt-pfx-ext.h
lib/getopt.c
lib/getopt.in.h
lib/getopt1.c
lib/getopt_int.h
lib/getpass.c
lib/getpass.h
lib/getpeername.c
lib/getsockname.c
lib/gettext.h
lib/gettimeofday.c
lib/getugroups.c
lib/getugroups.h
lib/glthread/lock.c
lib/glthread/lock.h
lib/glthread/threadlib.c
lib/hard-locale.c
lib/hard-locale.h
lib/ignore-value.h
lib/inet_ntop.c
lib/inet_pton.c
lib/intprops.h
lib/ioctl.c
lib/isatty.c
lib/itold.c
lib/langinfo.in.h
lib/libc-config.h
lib/limits.in.h
lib/listen.c
lib/localcharset.c
lib/localcharset.h
lib/locale.in.h
lib/localeconv.c
lib/localtime-buffer.c
lib/localtime-buffer.h
lib/lseek.c
lib/lstat.c
lib/malloc.c
lib/malloca.c
lib/malloca.h
lib/mbrtowc.c
lib/mbsinit.c
lib/mbsrtowcs-impl.h
lib/mbsrtowcs-state.c
lib/mbsrtowcs.c
lib/mbtowc-impl.h
lib/mbtowc.c
lib/memchr.c
lib/memchr.valgrind
lib/mgetgroups.c
lib/mgetgroups.h
lib/mkdir.c
lib/mkdtemp.c
lib/mkostemp.c
lib/mkostemps.c
lib/mktime-internal.h
lib/mktime.c
lib/msvc-inval.c
lib/msvc-inval.h
lib/msvc-nothrow.c
lib/msvc-nothrow.h
lib/net_if.in.h
lib/netdb.in.h
lib/netinet_in.in.h
lib/nl_langinfo.c
lib/nonblocking.c
lib/nonblocking.h
lib/open.c
lib/openpty.c
lib/passfd.c
lib/passfd.h
lib/pathmax.h
lib/perror.c
lib/physmem.c
lib/physmem.h
lib/pipe.c
lib/pipe2.c
lib/poll.c
lib/poll.in.h
lib/posix_openpt.c
lib/printf-args.c
lib/printf-args.h
lib/printf-parse.c
lib/printf-parse.h
lib/pthread.c
lib/pthread.in.h
lib/pthread_sigmask.c
lib/pty.in.h
lib/raise.c
lib/rawmemchr.c
lib/rawmemchr.valgrind
lib/readlink.c
lib/realloc.c
lib/recv.c
lib/regcomp.c
lib/regex.c
lib/regex.h
lib/regex_internal.c
lib/regex_internal.h
lib/regexec.c
lib/sched.in.h
lib/secure_getenv.c
lib/select.c
lib/send.c
lib/setenv.c
lib/setsockopt.c
lib/sig-handler.c
lib/sig-handler.h
lib/sigaction.c
lib/signal.in.h
lib/sigprocmask.c
lib/size_max.h
lib/sleep.c
lib/snprintf.c
lib/socket.c
lib/sockets.c
lib/sockets.h
lib/stat-time.c
lib/stat-time.h
lib/stat-w32.c
lib/stat-w32.h
lib/stat.c
lib/stdalign.in.h
lib/stdarg.in.h
lib/stdbool.in.h
lib/stddef.in.h
lib/stdint.in.h
lib/stdio-impl.h
lib/stdio-read.c
lib/stdio-write.c
lib/stdio.in.h
lib/stdlib.in.h
lib/stpcpy.c
lib/str-two-way.h
lib/strcasecmp.c
lib/strchrnul.c
lib/strchrnul.valgrind
lib/strdup.c
lib/streq.h
lib/strerror-override.c
lib/strerror-override.h
lib/strerror.c
lib/strerror_r.c
lib/string.in.h
lib/strings.in.h
lib/stripslash.c
lib/strncasecmp.c
lib/strndup.c
lib/strnlen.c
lib/strnlen1.c
lib/strnlen1.h
lib/strptime.c
lib/strsep.c
lib/strtok_r.c
lib/sys_ioctl.in.h
lib/sys_select.in.h
lib/sys_socket.c
lib/sys_socket.in.h
lib/sys_stat.in.h
lib/sys_time.in.h
lib/sys_types.in.h
lib/sys_uio.in.h
lib/sys_utsname.in.h
lib/sys_wait.in.h
lib/tempname.c
lib/tempname.h
lib/termios.in.h
lib/time.in.h
lib/time_r.c
lib/timegm.c
lib/ttyname_r.c
lib/uname.c
lib/unistd.c
lib/unistd.in.h
lib/unitypes.in.h
lib/uniwidth.in.h
lib/uniwidth/cjk.h
lib/uniwidth/width.c
lib/unsetenv.c
lib/unused-parameter.h
lib/usleep.c
lib/vasnprintf.c
lib/vasnprintf.h
lib/vasprintf.c
lib/verify.h
lib/vsnprintf.c
lib/w32sock.h
lib/waitpid.c
lib/warn-on-use.h
lib/wchar.in.h
lib/wcrtomb.c
lib/wctype-h.c
lib/wctype.in.h
lib/wcwidth.c
lib/xalloc-oversized.h
lib/xsize.c
lib/xsize.h
m4/00gnulib.m4
m4/__inline.m4
m4/absolute-header.m4
m4/alloca.m4
m4/arpa_inet_h.m4
m4/asm-underscore.m4
m4/autobuild.m4
m4/base64.m4
m4/btowc.m4
m4/builtin-expect.m4
m4/byteswap.m4
m4/calloc.m4
m4/canonicalize.m4
m4/chown.m4
m4/clock_time.m4
m4/close.m4
m4/codeset.m4
m4/configmake.m4
m4/count-leading-zeros.m4
m4/count-one-bits.m4
m4/ctype.m4
m4/dirname.m4
m4/double-slash-root.m4
m4/dup.m4
m4/dup2.m4
m4/eealloc.m4
m4/environ.m4
m4/errno_h.m4
m4/error.m4
m4/execinfo.m4
m4/exponentd.m4
m4/exponentf.m4
m4/exponentl.m4
m4/extensions.m4
m4/extern-inline.m4
m4/fatal-signal.m4
m4/fclose.m4
m4/fcntl-o.m4
m4/fcntl.m4
m4/fcntl_h.m4
m4/fdatasync.m4
m4/fdopen.m4
m4/fflush.m4
m4/ffs.m4
m4/ffsl.m4
m4/flexmember.m4
m4/float_h.m4
m4/fnmatch.m4
m4/fnmatch_h.m4
m4/fpieee.m4
m4/fpurge.m4
m4/freading.m4
m4/fseek.m4
m4/fseeko.m4
m4/fstat.m4
m4/fsync.m4
m4/ftell.m4
m4/ftello.m4
m4/ftruncate.m4
m4/func.m4
m4/getaddrinfo.m4
m4/getcwd.m4
m4/getdelim.m4
m4/getdtablesize.m4
m4/getgroups.m4
m4/gethostname.m4
m4/getline.m4
m4/getopt.m4
m4/getpagesize.m4
m4/getpass.m4
m4/getprogname.m4
m4/gettimeofday.m4
m4/getugroups.m4
m4/glibc21.m4
m4/gnulib-common.m4
m4/grantpt.m4
m4/host-cpu-c-abi.m4
m4/hostent.m4
m4/include_next.m4
m4/inet_ntop.m4
m4/inet_pton.m4
m4/intl-thread-locale.m4
m4/intlmacosx.m4
m4/intmax_t.m4
m4/inttypes-pri.m4
m4/inttypes.m4
m4/inttypes_h.m4
m4/ioctl.m4
m4/isatty.m4
m4/isblank.m4
m4/isnand.m4
m4/isnanf.m4
m4/isnanl.m4
m4/langinfo_h.m4
m4/largefile.m4
m4/lcmessage.m4
m4/ldexp.m4
m4/lib-ld.m4
m4/lib-link.m4
m4/lib-prefix.m4
m4/libunistring-base.m4
m4/limits-h.m4
m4/localcharset.m4
m4/locale-fr.m4
m4/locale-ja.m4
m4/locale-tr.m4
m4/locale-zh.m4
m4/locale_h.m4
m4/localeconv.m4
m4/localename.m4
m4/localtime-buffer.m4
m4/lock.m4
m4/longlong.m4
m4/lseek.m4
m4/lstat.m4
m4/malloc.m4
m4/malloca.m4
m4/manywarnings-c++.m4
m4/manywarnings.m4
m4/math_h.m4
m4/mbrtowc.m4
m4/mbsinit.m4
m4/mbsrtowcs.m4
m4/mbstate_t.m4
m4/mbtowc.m4
m4/memchr.m4
m4/mgetgroups.m4
m4/mkdir.m4
m4/mkdtemp.m4
m4/mkostemp.m4
m4/mkostemps.m4
m4/mktime.m4
m4/mmap-anon.m4
m4/mode_t.m4
m4/msvc-inval.m4
m4/msvc-nothrow.m4
m4/multiarch.m4
m4/nanosleep.m4
m4/net_if_h.m4
m4/netdb_h.m4
m4/netinet_in_h.m4
m4/nl_langinfo.m4
m4/nocrash.m4
m4/nonblocking.m4
m4/off_t.m4
m4/open-cloexec.m4
m4/open.m4
m4/passfd.m4
m4/pathmax.m4
m4/perror.m4
m4/physmem.m4
m4/pipe.m4
m4/pipe2.m4
m4/poll.m4
m4/poll_h.m4
m4/posix-shell.m4
m4/posix_openpt.m4
m4/posix_spawn.m4
m4/printf.m4
m4/pthread.m4
m4/pthread_rwlock_rdlock.m4
m4/pthread_sigmask.m4
m4/ptsname.m4
m4/ptsname_r.m4
m4/pty.m4
m4/pty_h.m4
m4/putenv.m4
m4/raise.m4
m4/rawmemchr.m4
m4/read.m4
m4/readlink.m4
m4/realloc.m4
m4/regex.m4
m4/sched_h.m4
m4/secure_getenv.m4
m4/select.m4
m4/servent.m4
m4/setenv.m4
m4/setlocale.m4
m4/sh-filename.m4
m4/sig_atomic_t.m4
m4/sigaction.m4
m4/signal_h.m4
m4/signalblocking.m4
m4/signbit.m4
m4/sigpipe.m4
m4/size_max.m4
m4/sleep.m4
m4/snprintf.m4
m4/socketlib.m4
m4/sockets.m4
m4/socklen.m4
m4/sockpfaf.m4
m4/spawn_h.m4
m4/ssize_t.m4
m4/stat-time.m4
m4/stat.m4
m4/stdalign.m4
m4/stdarg.m4
m4/stdbool.m4
m4/stddef_h.m4
m4/stdint.m4
m4/stdint_h.m4
m4/stdio_h.m4
m4/stdlib_h.m4
m4/stpcpy.m4
m4/strcase.m4
m4/strchrnul.m4
m4/strdup.m4
m4/strerror.m4
m4/strerror_r.m4
m4/string_h.m4
m4/strings_h.m4
m4/strndup.m4
m4/strnlen.m4
m4/strptime.m4
m4/strsep.m4
m4/strtok_r.m4
m4/symlink.m4
m4/sys_ioctl_h.m4
m4/sys_select_h.m4
m4/sys_socket_h.m4
m4/sys_stat_h.m4
m4/sys_time_h.m4
m4/sys_types_h.m4
m4/sys_uio_h.m4
m4/sys_utsname_h.m4
m4/sys_wait_h.m4
m4/tempname.m4
m4/termios_h.m4
m4/thread.m4
m4/threadlib.m4
m4/time_h.m4
m4/time_r.m4
m4/timegm.m4
m4/tm_gmtoff.m4
m4/ttyname_r.m4
m4/uname.m4
m4/ungetc.m4
m4/unistd_h.m4
m4/unlockpt.m4
m4/usleep.m4
m4/vasnprintf.m4
m4/vasprintf.m4
m4/vsnprintf.m4
m4/wait-process.m4
m4/waitpid.m4
m4/warn-on-use.m4
m4/warnings.m4
m4/wchar_h.m4
m4/wchar_t.m4
m4/wcrtomb.m4
m4/wctob.m4
m4/wctomb.m4
m4/wctype_h.m4
m4/wcwidth.m4
m4/wint_t.m4
m4/write.m4
m4/xalloc.m4
m4/xsize.m4
tests/infinity.h
tests/init.sh
tests/macros.h
tests/minus-zero.h
tests/nan.h
tests/nap.h
tests/null-ptr.h
tests/randomd.c
tests/signature.h
tests/socket-client.h
tests/socket-server.h
tests/test-accept.c
tests/test-alloca-opt.c
tests/test-areadlink.c
tests/test-areadlink.h
tests/test-arpa_inet.c
tests/test-base64.c
tests/test-binary-io.c
tests/test-binary-io.sh
tests/test-bind.c
tests/test-bitrotate.c
tests/test-btowc.c
tests/test-btowc1.sh
tests/test-btowc2.sh
tests/test-byteswap.c
tests/test-c-ctype.c
tests/test-c-strcase.sh
tests/test-c-strcasecmp.c
tests/test-c-strcasestr.c
tests/test-c-strncasecmp.c
tests/test-canonicalize-lgpl.c
tests/test-chown.c
tests/test-chown.h
tests/test-cloexec.c
tests/test-close.c
tests/test-connect.c
tests/test-count-leading-zeros.c
tests/test-count-one-bits.c
tests/test-ctype.c
tests/test-dup.c
tests/test-dup2.c
tests/test-environ.c
tests/test-errno.c
tests/test-fclose.c
tests/test-fcntl-h.c
tests/test-fcntl.c
tests/test-fdatasync.c
tests/test-fdopen.c
tests/test-fflush.c
tests/test-fflush2.c
tests/test-fflush2.sh
tests/test-ffs.c
tests/test-ffsl.c
tests/test-fgetc.c
tests/test-float.c
tests/test-fnmatch-h.c
tests/test-fnmatch.c
tests/test-fpurge.c
tests/test-fputc.c
tests/test-fread.c
tests/test-freading.c
tests/test-fseek.c
tests/test-fseek.sh
tests/test-fseek2.sh
tests/test-fseeko.c
tests/test-fseeko.sh
tests/test-fseeko2.sh
tests/test-fseeko3.c
tests/test-fseeko3.sh
tests/test-fseeko4.c
tests/test-fseeko4.sh
tests/test-fstat.c
tests/test-fsync.c
tests/test-ftell.c
tests/test-ftell.sh
tests/test-ftell2.sh
tests/test-ftell3.c
tests/test-ftello.c
tests/test-ftello.sh
tests/test-ftello2.sh
tests/test-ftello3.c
tests/test-ftello4.c
tests/test-ftello4.sh
tests/test-ftruncate.c
tests/test-ftruncate.sh
tests/test-func.c
tests/test-fwrite.c
tests/test-getaddrinfo.c
tests/test-getcwd-lgpl.c
tests/test-getdelim.c
tests/test-getdtablesize.c
tests/test-getgroups.c
tests/test-gethostname.c
tests/test-getline.c
tests/test-getopt-main.h
tests/test-getopt-posix.c
tests/test-getopt.h
tests/test-getpeername.c
tests/test-getprogname.c
tests/test-getsockname.c
tests/test-getsockopt.c
tests/test-gettimeofday.c
tests/test-grantpt.c
tests/test-ignore-value.c
tests/test-inet_ntop.c
tests/test-inet_pton.c
tests/test-init.sh
tests/test-intprops.c
tests/test-inttypes.c
tests/test-ioctl.c
tests/test-isatty.c
tests/test-isblank.c
tests/test-isnand-nolibm.c
tests/test-isnand.h
tests/test-isnanf-nolibm.c
tests/test-isnanf.h
tests/test-isnanl-nolibm.c
tests/test-isnanl.h
tests/test-langinfo.c
tests/test-ldexp.c
tests/test-ldexp.h
tests/test-limits-h.c
tests/test-listen.c
tests/test-localcharset.c
tests/test-locale.c
tests/test-localeconv.c
tests/test-localename.c
tests/test-lseek.c
tests/test-lseek.sh
tests/test-lstat.c
tests/test-lstat.h
tests/test-malloca.c
tests/test-math.c
tests/test-mbrtowc-w32-1.sh
tests/test-mbrtowc-w32-2.sh
tests/test-mbrtowc-w32-3.sh
tests/test-mbrtowc-w32-4.sh
tests/test-mbrtowc-w32-5.sh
tests/test-mbrtowc-w32.c
tests/test-mbrtowc.c
tests/test-mbrtowc1.sh
tests/test-mbrtowc2.sh
tests/test-mbrtowc3.sh
tests/test-mbrtowc4.sh
tests/test-mbrtowc5.sh
tests/test-mbsinit.c
tests/test-mbsinit.sh
tests/test-mbsrtowcs.c
tests/test-mbsrtowcs1.sh
tests/test-mbsrtowcs2.sh
tests/test-mbsrtowcs3.sh
tests/test-mbsrtowcs4.sh
tests/test-memchr.c
tests/test-mkdir.c
tests/test-mkdir.h
tests/test-nanosleep.c
tests/test-net_if.c
tests/test-netdb.c
tests/test-netinet_in.c
tests/test-nl_langinfo.c
tests/test-nl_langinfo.sh
tests/test-nonblocking-misc.h
tests/test-nonblocking-pipe-child.c
tests/test-nonblocking-pipe-main.c
tests/test-nonblocking-pipe.h
tests/test-nonblocking-pipe.sh
tests/test-nonblocking-reader.h
tests/test-nonblocking-socket-child.c
tests/test-nonblocking-socket-main.c
tests/test-nonblocking-socket.h
tests/test-nonblocking-socket.sh
tests/test-nonblocking-writer.h
tests/test-nonblocking.c
tests/test-open.c
tests/test-open.h
tests/test-openpty.c
tests/test-passfd.c
tests/test-pathmax.c
tests/test-perror.c
tests/test-perror.sh
tests/test-perror2.c
tests/test-pipe.c
tests/test-pipe2.c
tests/test-poll-h.c
tests/test-poll.c
tests/test-posix_openpt.c
tests/test-posix_spawn1.c
tests/test-posix_spawn1.in.sh
tests/test-posix_spawn2.c
tests/test-posix_spawn2.in.sh
tests/test-posix_spawn_file_actions_addclose.c
tests/test-posix_spawn_file_actions_adddup2.c
tests/test-posix_spawn_file_actions_addopen.c
tests/test-pthread_sigmask1.c
tests/test-pthread_sigmask2.c
tests/test-ptsname.c
tests/test-ptsname_r.c
tests/test-raise.c
tests/test-rawmemchr.c
tests/test-read.c
tests/test-readlink.c
tests/test-readlink.h
tests/test-recv.c
tests/test-regex.c
tests/test-sched.c
tests/test-select-fd.c
tests/test-select-in.sh
tests/test-select-out.sh
tests/test-select-stdin.c
tests/test-select.c
tests/test-select.h
tests/test-send.c
tests/test-setenv.c
tests/test-setlocale1.c
tests/test-setlocale1.sh
tests/test-setlocale2.c
tests/test-setlocale2.sh
tests/test-setsockopt.c
tests/test-sigaction.c
tests/test-signal-h.c
tests/test-signbit.c
tests/test-sigpipe.c
tests/test-sigpipe.sh
tests/test-sigprocmask.c
tests/test-sleep.c
tests/test-snprintf.c
tests/test-sockets.c
tests/test-spawn.c
tests/test-stat-time.c
tests/test-stat.c
tests/test-stat.h
tests/test-stdalign.c
tests/test-stdbool.c
tests/test-stddef.c
tests/test-stdint.c
tests/test-stdio.c
tests/test-stdlib.c
tests/test-strchrnul.c
tests/test-strerror.c
tests/test-strerror_r.c
tests/test-string.c
tests/test-strings.c
tests/test-strnlen.c
tests/test-symlink.c
tests/test-symlink.h
tests/test-sys_ioctl.c
tests/test-sys_select.c
tests/test-sys_socket.c
tests/test-sys_stat.c
tests/test-sys_time.c
tests/test-sys_types.c
tests/test-sys_uio.c
tests/test-sys_utsname.c
tests/test-sys_wait.c
tests/test-sys_wait.h
tests/test-termios.c
tests/test-thread_create.c
tests/test-thread_self.c
tests/test-time.c
tests/test-ttyname_r.c
tests/test-uname.c
tests/test-unistd.c
tests/test-unlockpt.c
tests/test-unsetenv.c
tests/test-usleep.c
tests/test-vasnprintf.c
tests/test-vasprintf.c
tests/test-vc-list-files-cvs.sh
tests/test-vc-list-files-git.sh
tests/test-verify-try.c
tests/test-verify.c
tests/test-verify.sh
tests/test-vsnprintf.c
tests/test-wchar.c
tests/test-wcrtomb-w32-1.sh
tests/test-wcrtomb-w32-2.sh
tests/test-wcrtomb-w32-3.sh
tests/test-wcrtomb-w32-4.sh
tests/test-wcrtomb-w32-5.sh
tests/test-wcrtomb-w32.c
tests/test-wcrtomb.c
tests/test-wcrtomb.sh
tests/test-wctype-h.c
tests/test-wcwidth.c
tests/test-write.c
tests/test-xalloc-die.c
tests/test-xalloc-die.sh
tests/uniwidth/test-uc_width.c
tests/uniwidth/test-uc_width2.c
tests/uniwidth/test-uc_width2.sh
tests/zerosize-ptr.h
lib/_Noreturn.h -> tests/_Noreturn.h
lib/arg-nonnull.h -> tests/arg-nonnull.h
lib/c++defs.h -> tests/c++defs.h
lib/ctype.in.h -> tests/ctype.in.h
lib/dup.c -> tests/dup.c
lib/error.c -> tests/error.c
lib/error.h -> tests/error.h
lib/exitfail.c -> tests/exitfail.c
lib/exitfail.h -> tests/exitfail.h
lib/fatal-signal.c -> tests/fatal-signal.c
lib/fatal-signal.h -> tests/fatal-signal.h
lib/fdopen.c -> tests/fdopen.c
lib/float+.h -> tests/float+.h
lib/fpucw.h -> tests/fpucw.h
lib/ftruncate.c -> tests/ftruncate.c
lib/getpagesize.c -> tests/getpagesize.c
lib/getprogname.c -> tests/getprogname.c
lib/getprogname.h -> tests/getprogname.h
lib/getsockopt.c -> tests/getsockopt.c
lib/glthread/thread.c -> tests/glthread/thread.c
lib/glthread/thread.h -> tests/glthread/thread.h
lib/grantpt.c -> tests/grantpt.c
lib/inttypes.in.h -> tests/inttypes.in.h
lib/isblank.c -> tests/isblank.c
lib/isnan.c -> tests/isnan.c
lib/isnand-nolibm.h -> tests/isnand-nolibm.h
lib/isnand.c -> tests/isnand.c
lib/isnanf-nolibm.h -> tests/isnanf-nolibm.h
lib/isnanf.c -> tests/isnanf.c
lib/isnanl-nolibm.h -> tests/isnanl-nolibm.h
lib/isnanl.c -> tests/isnanl.c
lib/localename-table.c -> tests/localename-table.c
lib/localename-table.h -> tests/localename-table.h
lib/localename.c -> tests/localename.c
lib/localename.h -> tests/localename.h
lib/math.c -> tests/math.c
lib/math.in.h -> tests/math.in.h
lib/nanosleep.c -> tests/nanosleep.c
lib/ptsname.c -> tests/ptsname.c
lib/ptsname_r.c -> tests/ptsname_r.c
lib/pty-private.h -> tests/pty-private.h
lib/putenv.c -> tests/putenv.c
lib/read.c -> tests/read.c
lib/same-inode.h -> tests/same-inode.h
lib/setlocale.c -> tests/setlocale.c
lib/signbitd.c -> tests/signbitd.c
lib/signbitf.c -> tests/signbitf.c
lib/signbitl.c -> tests/signbitl.c
lib/spawn.in.h -> tests/spawn.in.h
lib/spawn_faction_addclose.c -> tests/spawn_faction_addclose.c
lib/spawn_faction_adddup2.c -> tests/spawn_faction_adddup2.c
lib/spawn_faction_addopen.c -> tests/spawn_faction_addopen.c
lib/spawn_faction_destroy.c -> tests/spawn_faction_destroy.c
lib/spawn_faction_init.c -> tests/spawn_faction_init.c
lib/spawn_int.h -> tests/spawn_int.h
lib/spawnattr_destroy.c -> tests/spawnattr_destroy.c
lib/spawnattr_init.c -> tests/spawnattr_init.c
lib/spawnattr_setflags.c -> tests/spawnattr_setflags.c
lib/spawnattr_setsigmask.c -> tests/spawnattr_setsigmask.c
lib/spawni.c -> tests/spawni.c
lib/spawnp.c -> tests/spawnp.c
lib/symlink.c -> tests/symlink.c
lib/unlockpt.c -> tests/unlockpt.c
lib/unused-parameter.h -> tests/unused-parameter.h
lib/w32sock.h -> tests/w32sock.h
lib/wait-process.c -> tests/wait-process.c
lib/wait-process.h -> tests/wait-process.h
lib/warn-on-use.h -> tests/warn-on-use.h
lib/wctob.c -> tests/wctob.c
lib/wctomb-impl.h -> tests/wctomb-impl.h
lib/wctomb.c -> tests/wctomb.c
lib/write.c -> tests/write.c
lib/xalloc-die.c -> tests/xalloc-die.c
lib/xalloc.h -> tests/xalloc.h
lib/xmalloc.c -> tests/xmalloc.c
top/GNUmakefile
top/maint.mk
Creating directory ./gnulib/lib/glthread
Creating directory ./gnulib/lib/uniwidth
Creating directory ./gnulib/tests/glthread
Creating directory ./gnulib/tests/uniwidth
Copying file GNUmakefile
Copying file build-aux/config.rpath
Copying file build-aux/gitlog-to-changelog
Copying file build-aux/mktempd
Copying file build-aux/useless-if-before-free
Copying file build-aux/vc-list-files
Copying file gnulib/lib/_Noreturn.h
Copying file gnulib/lib/accept.c
Copying file gnulib/lib/alloca.c
Copying file gnulib/lib/alloca.in.h
Copying file gnulib/lib/allocator.c
Copying file gnulib/lib/allocator.h
Copying file gnulib/lib/areadlink.c
Copying file gnulib/lib/areadlink.h
Copying file gnulib/lib/arg-nonnull.h
Copying file gnulib/lib/arpa_inet.in.h
Copying file gnulib/lib/asnprintf.c
Copying file gnulib/lib/asprintf.c
Copying file gnulib/lib/assure.h
Copying file gnulib/lib/base64.c
Copying file gnulib/lib/base64.h
Copying file gnulib/lib/basename-lgpl.c
Copying file gnulib/lib/binary-io.c
Copying file gnulib/lib/binary-io.h
Copying file gnulib/lib/bind.c
Copying file gnulib/lib/bitrotate.c
Copying file gnulib/lib/bitrotate.h
Copying file gnulib/lib/btowc.c
Copying file gnulib/lib/byteswap.in.h
Copying file gnulib/lib/c++defs.h
Copying file gnulib/lib/c-ctype.c
Copying file gnulib/lib/c-ctype.h
Copying file gnulib/lib/c-strcase.h
Copying file gnulib/lib/c-strcasecmp.c
Copying file gnulib/lib/c-strcasestr.c
Copying file gnulib/lib/c-strcasestr.h
Copying file gnulib/lib/c-strncasecmp.c
Copying file gnulib/lib/calloc.c
Copying file gnulib/lib/canonicalize-lgpl.c
Copying file gnulib/lib/careadlinkat.c
Copying file gnulib/lib/careadlinkat.h
Copying file gnulib/lib/cdefs.h
Copying file gnulib/lib/chown.c
Copying file gnulib/lib/cloexec.c
Copying file gnulib/lib/cloexec.h
Copying file gnulib/lib/close.c
Copying file gnulib/lib/connect.c
Copying file gnulib/lib/count-leading-zeros.c
Copying file gnulib/lib/count-leading-zeros.h
Copying file gnulib/lib/count-one-bits.c
Copying file gnulib/lib/count-one-bits.h
Copying file gnulib/lib/dirname-lgpl.c
Copying file gnulib/lib/dirname.h
Copying file gnulib/lib/dosname.h
Copying file gnulib/lib/dup2.c
Copying file gnulib/lib/errno.in.h
Copying file gnulib/lib/execinfo.c
Copying file gnulib/lib/execinfo.in.h
Copying file gnulib/lib/fchown-stub.c
Copying file gnulib/lib/fclose.c
Copying file gnulib/lib/fcntl.c
Copying file gnulib/lib/fcntl.in.h
Copying file gnulib/lib/fd-hook.c
Copying file gnulib/lib/fd-hook.h
Copying file gnulib/lib/fdatasync.c
Copying file gnulib/lib/fflush.c
Copying file gnulib/lib/ffs.c
Copying file gnulib/lib/ffsl.c
Copying file gnulib/lib/ffsl.h
Copying file gnulib/lib/filename.h
Copying file gnulib/lib/flexmember.h
Copying file gnulib/lib/float+.h
Copying file gnulib/lib/float.c
Copying file gnulib/lib/float.in.h
Copying file gnulib/lib/fnmatch.c
Copying file gnulib/lib/fnmatch.in.h
Copying file gnulib/lib/fnmatch_loop.c
Copying file gnulib/lib/fpurge.c
Copying file gnulib/lib/freading.c
Copying file gnulib/lib/freading.h
Copying file gnulib/lib/fseek.c
Copying file gnulib/lib/fseeko.c
Copying file gnulib/lib/fstat.c
Copying file gnulib/lib/fsync.c
Copying file gnulib/lib/ftell.c
Copying file gnulib/lib/ftello.c
Copying file gnulib/lib/gai_strerror.c
Copying file gnulib/lib/getaddrinfo.c
Copying file gnulib/lib/getcwd-lgpl.c
Copying file gnulib/lib/getdelim.c
Copying file gnulib/lib/getdtablesize.c
Copying file gnulib/lib/getgroups.c
Copying file gnulib/lib/gethostname.c
Copying file gnulib/lib/getline.c
Copying file gnulib/lib/getopt-cdefs.in.h
Copying file gnulib/lib/getopt-core.h
Copying file gnulib/lib/getopt-ext.h
Copying file gnulib/lib/getopt-pfx-core.h
Copying file gnulib/lib/getopt-pfx-ext.h
Copying file gnulib/lib/getopt.c
Copying file gnulib/lib/getopt.in.h
Copying file gnulib/lib/getopt1.c
Copying file gnulib/lib/getopt_int.h
Copying file gnulib/lib/getpass.c
Copying file gnulib/lib/getpass.h
Copying file gnulib/lib/getpeername.c
Copying file gnulib/lib/getsockname.c
Copying file gnulib/lib/gettext.h
Copying file gnulib/lib/gettimeofday.c
Copying file gnulib/lib/getugroups.c
Copying file gnulib/lib/getugroups.h
Copying file gnulib/lib/glthread/lock.c
Copying file gnulib/lib/glthread/lock.h
Copying file gnulib/lib/glthread/threadlib.c
Copying file gnulib/lib/hard-locale.c
Copying file gnulib/lib/hard-locale.h
Copying file gnulib/lib/ignore-value.h
Copying file gnulib/lib/inet_ntop.c
Copying file gnulib/lib/inet_pton.c
Copying file gnulib/lib/intprops.h
Copying file gnulib/lib/ioctl.c
Copying file gnulib/lib/isatty.c
Copying file gnulib/lib/itold.c
Copying file gnulib/lib/langinfo.in.h
Copying file gnulib/lib/libc-config.h
Copying file gnulib/lib/limits.in.h
Copying file gnulib/lib/listen.c
Copying file gnulib/lib/localcharset.c
Copying file gnulib/lib/localcharset.h
Copying file gnulib/lib/locale.in.h
Copying file gnulib/lib/localeconv.c
Copying file gnulib/lib/localtime-buffer.c
Copying file gnulib/lib/localtime-buffer.h
Copying file gnulib/lib/lseek.c
Copying file gnulib/lib/lstat.c
Copying file gnulib/lib/malloc.c
Copying file gnulib/lib/malloca.c
Copying file gnulib/lib/malloca.h
Copying file gnulib/lib/mbrtowc.c
Copying file gnulib/lib/mbsinit.c
Copying file gnulib/lib/mbsrtowcs-impl.h
Copying file gnulib/lib/mbsrtowcs-state.c
Copying file gnulib/lib/mbsrtowcs.c
Copying file gnulib/lib/mbtowc-impl.h
Copying file gnulib/lib/mbtowc.c
Copying file gnulib/lib/memchr.c
Copying file gnulib/lib/memchr.valgrind
Copying file gnulib/lib/mgetgroups.c
Copying file gnulib/lib/mgetgroups.h
Copying file gnulib/lib/mkdir.c
Copying file gnulib/lib/mkdtemp.c
Copying file gnulib/lib/mkostemp.c
Copying file gnulib/lib/mkostemps.c
Copying file gnulib/lib/mktime-internal.h
Copying file gnulib/lib/mktime.c
Copying file gnulib/lib/msvc-inval.c
Copying file gnulib/lib/msvc-inval.h
Copying file gnulib/lib/msvc-nothrow.c
Copying file gnulib/lib/msvc-nothrow.h
Copying file gnulib/lib/net_if.in.h
Copying file gnulib/lib/netdb.in.h
Copying file gnulib/lib/netinet_in.in.h
Copying file gnulib/lib/nl_langinfo.c
Copying file gnulib/lib/nonblocking.c
Copying file gnulib/lib/nonblocking.h
Copying file gnulib/lib/open.c
Copying file gnulib/lib/openpty.c
Copying file gnulib/lib/passfd.c
Copying file gnulib/lib/passfd.h
Copying file gnulib/lib/pathmax.h
Copying file gnulib/lib/perror.c
Copying file gnulib/lib/physmem.c
Copying file gnulib/lib/physmem.h
Copying file gnulib/lib/pipe.c
Copying file gnulib/lib/pipe2.c
Copying file gnulib/lib/poll.c
Copying file gnulib/lib/poll.in.h
Copying file gnulib/lib/posix_openpt.c
Copying file gnulib/lib/printf-args.c
Copying file gnulib/lib/printf-args.h
Copying file gnulib/lib/printf-parse.c
Copying file gnulib/lib/printf-parse.h
Copying file gnulib/lib/pthread.c
Copying file gnulib/lib/pthread.in.h
Copying file gnulib/lib/pthread_sigmask.c
Copying file gnulib/lib/pty.in.h
Copying file gnulib/lib/raise.c
Copying file gnulib/lib/rawmemchr.c
Copying file gnulib/lib/rawmemchr.valgrind
Copying file gnulib/lib/readlink.c
Copying file gnulib/lib/realloc.c
Copying file gnulib/lib/recv.c
Copying file gnulib/lib/regcomp.c
Copying file gnulib/lib/regex.c
Copying file gnulib/lib/regex.h
Copying file gnulib/lib/regex_internal.c
Copying file gnulib/lib/regex_internal.h
Copying file gnulib/lib/regexec.c
Copying file gnulib/lib/sched.in.h
Copying file gnulib/lib/secure_getenv.c
Copying file gnulib/lib/select.c
Copying file gnulib/lib/send.c
Copying file gnulib/lib/setenv.c
Copying file gnulib/lib/setsockopt.c
Copying file gnulib/lib/sig-handler.c
Copying file gnulib/lib/sig-handler.h
Copying file gnulib/lib/sigaction.c
Copying file gnulib/lib/signal.in.h
Copying file gnulib/lib/sigprocmask.c
Copying file gnulib/lib/size_max.h
Copying file gnulib/lib/sleep.c
Copying file gnulib/lib/snprintf.c
Copying file gnulib/lib/socket.c
Copying file gnulib/lib/sockets.c
Copying file gnulib/lib/sockets.h
Copying file gnulib/lib/stat-time.c
Copying file gnulib/lib/stat-time.h
Copying file gnulib/lib/stat-w32.c
Copying file gnulib/lib/stat-w32.h
Copying file gnulib/lib/stat.c
Copying file gnulib/lib/stdalign.in.h
Copying file gnulib/lib/stdarg.in.h
Copying file gnulib/lib/stdbool.in.h
Copying file gnulib/lib/stddef.in.h
Copying file gnulib/lib/stdint.in.h
Copying file gnulib/lib/stdio-impl.h
Copying file gnulib/lib/stdio-read.c
Copying file gnulib/lib/stdio-write.c
Copying file gnulib/lib/stdio.in.h
Copying file gnulib/lib/stdlib.in.h
Copying file gnulib/lib/stpcpy.c
Copying file gnulib/lib/str-two-way.h
Copying file gnulib/lib/strcasecmp.c
Copying file gnulib/lib/strchrnul.c
Copying file gnulib/lib/strchrnul.valgrind
Copying file gnulib/lib/strdup.c
Copying file gnulib/lib/streq.h
Copying file gnulib/lib/strerror-override.c
Copying file gnulib/lib/strerror-override.h
Copying file gnulib/lib/strerror.c
Copying file gnulib/lib/strerror_r.c
Copying file gnulib/lib/string.in.h
Copying file gnulib/lib/strings.in.h
Copying file gnulib/lib/stripslash.c
Copying file gnulib/lib/strncasecmp.c
Copying file gnulib/lib/strndup.c
Copying file gnulib/lib/strnlen.c
Copying file gnulib/lib/strnlen1.c
Copying file gnulib/lib/strnlen1.h
Copying file gnulib/lib/strptime.c
Copying file gnulib/lib/strsep.c
Copying file gnulib/lib/strtok_r.c
Copying file gnulib/lib/sys_ioctl.in.h
Copying file gnulib/lib/sys_select.in.h
Copying file gnulib/lib/sys_socket.c
Copying file gnulib/lib/sys_socket.in.h
Copying file gnulib/lib/sys_stat.in.h
Copying file gnulib/lib/sys_time.in.h
Copying file gnulib/lib/sys_types.in.h
Copying file gnulib/lib/sys_uio.in.h
Copying file gnulib/lib/sys_utsname.in.h
Copying file gnulib/lib/sys_wait.in.h
Copying file gnulib/lib/tempname.c
Copying file gnulib/lib/tempname.h
Copying file gnulib/lib/termios.in.h
Copying file gnulib/lib/time.in.h
Copying file gnulib/lib/time_r.c
Copying file gnulib/lib/timegm.c
Copying file gnulib/lib/ttyname_r.c
Copying file gnulib/lib/uname.c
Copying file gnulib/lib/unistd.c
Copying file gnulib/lib/unistd.in.h
Copying file gnulib/lib/unitypes.in.h
Copying file gnulib/lib/uniwidth.in.h
Copying file gnulib/lib/uniwidth/cjk.h
Copying file gnulib/lib/uniwidth/width.c
Copying file gnulib/lib/unsetenv.c
Copying file gnulib/lib/unused-parameter.h
Copying file gnulib/lib/usleep.c
Copying file gnulib/lib/vasnprintf.c
Copying file gnulib/lib/vasnprintf.h
Copying file gnulib/lib/vasprintf.c
Copying file gnulib/lib/verify.h
Copying file gnulib/lib/vsnprintf.c
Copying file gnulib/lib/w32sock.h
Copying file gnulib/lib/waitpid.c
Copying file gnulib/lib/warn-on-use.h
Copying file gnulib/lib/wchar.in.h
Copying file gnulib/lib/wcrtomb.c
Copying file gnulib/lib/wctype-h.c
Copying file gnulib/lib/wctype.in.h
Copying file gnulib/lib/wcwidth.c
Copying file gnulib/lib/xalloc-oversized.h
Copying file gnulib/lib/xsize.c
Copying file gnulib/lib/xsize.h
Copying file gnulib/tests/_Noreturn.h
Copying file gnulib/tests/arg-nonnull.h
Copying file gnulib/tests/c++defs.h
Copying file gnulib/tests/ctype.in.h
Copying file gnulib/tests/dup.c
Copying file gnulib/tests/error.c
Copying file gnulib/tests/error.h
Copying file gnulib/tests/exitfail.c
Copying file gnulib/tests/exitfail.h
Copying file gnulib/tests/fatal-signal.c
Copying file gnulib/tests/fatal-signal.h
Copying file gnulib/tests/fdopen.c
Copying file gnulib/tests/float+.h
Copying file gnulib/tests/fpucw.h
Copying file gnulib/tests/ftruncate.c
Copying file gnulib/tests/getpagesize.c
Copying file gnulib/tests/getprogname.c
Copying file gnulib/tests/getprogname.h
Copying file gnulib/tests/getsockopt.c
Copying file gnulib/tests/glthread/thread.c
Copying file gnulib/tests/glthread/thread.h
Copying file gnulib/tests/grantpt.c
Copying file gnulib/tests/infinity.h
Copying file gnulib/tests/init.sh
Copying file gnulib/tests/inttypes.in.h
Copying file gnulib/tests/isblank.c
Copying file gnulib/tests/isnan.c
Copying file gnulib/tests/isnand-nolibm.h
Copying file gnulib/tests/isnand.c
Copying file gnulib/tests/isnanf-nolibm.h
Copying file gnulib/tests/isnanf.c
Copying file gnulib/tests/isnanl-nolibm.h
Copying file gnulib/tests/isnanl.c
Copying file gnulib/tests/localename-table.c
Copying file gnulib/tests/localename-table.h
Copying file gnulib/tests/localename.c
Copying file gnulib/tests/localename.h
Copying file gnulib/tests/macros.h
Copying file gnulib/tests/math.c
Copying file gnulib/tests/math.in.h
Copying file gnulib/tests/minus-zero.h
Copying file gnulib/tests/nan.h
Copying file gnulib/tests/nanosleep.c
Copying file gnulib/tests/nap.h
Copying file gnulib/tests/null-ptr.h
Copying file gnulib/tests/ptsname.c
Copying file gnulib/tests/ptsname_r.c
Copying file gnulib/tests/pty-private.h
Copying file gnulib/tests/putenv.c
Copying file gnulib/tests/randomd.c
Copying file gnulib/tests/read.c
Copying file gnulib/tests/same-inode.h
Copying file gnulib/tests/setlocale.c
Copying file gnulib/tests/signature.h
Copying file gnulib/tests/signbitd.c
Copying file gnulib/tests/signbitf.c
Copying file gnulib/tests/signbitl.c
Copying file gnulib/tests/socket-client.h
Copying file gnulib/tests/socket-server.h
Copying file gnulib/tests/spawn.in.h
Copying file gnulib/tests/spawn_faction_addclose.c
Copying file gnulib/tests/spawn_faction_adddup2.c
Copying file gnulib/tests/spawn_faction_addopen.c
Copying file gnulib/tests/spawn_faction_destroy.c
Copying file gnulib/tests/spawn_faction_init.c
Copying file gnulib/tests/spawn_int.h
Copying file gnulib/tests/spawnattr_destroy.c
Copying file gnulib/tests/spawnattr_init.c
Copying file gnulib/tests/spawnattr_setflags.c
Copying file gnulib/tests/spawnattr_setsigmask.c
Copying file gnulib/tests/spawni.c
Copying file gnulib/tests/spawnp.c
Copying file gnulib/tests/symlink.c
Copying file gnulib/tests/test-accept.c
Copying file gnulib/tests/test-alloca-opt.c
Copying file gnulib/tests/test-areadlink.c
Copying file gnulib/tests/test-areadlink.h
Copying file gnulib/tests/test-arpa_inet.c
Copying file gnulib/tests/test-base64.c
Copying file gnulib/tests/test-binary-io.c
Copying file gnulib/tests/test-binary-io.sh
Copying file gnulib/tests/test-bind.c
Copying file gnulib/tests/test-bitrotate.c
Copying file gnulib/tests/test-btowc.c
Copying file gnulib/tests/test-btowc1.sh
Copying file gnulib/tests/test-btowc2.sh
Copying file gnulib/tests/test-byteswap.c
Copying file gnulib/tests/test-c-ctype.c
Copying file gnulib/tests/test-c-strcase.sh
Copying file gnulib/tests/test-c-strcasecmp.c
Copying file gnulib/tests/test-c-strcasestr.c
Copying file gnulib/tests/test-c-strncasecmp.c
Copying file gnulib/tests/test-canonicalize-lgpl.c
Copying file gnulib/tests/test-chown.c
Copying file gnulib/tests/test-chown.h
Copying file gnulib/tests/test-cloexec.c
Copying file gnulib/tests/test-close.c
Copying file gnulib/tests/test-connect.c
Copying file gnulib/tests/test-count-leading-zeros.c
Copying file gnulib/tests/test-count-one-bits.c
Copying file gnulib/tests/test-ctype.c
Copying file gnulib/tests/test-dup.c
Copying file gnulib/tests/test-dup2.c
Copying file gnulib/tests/test-environ.c
Copying file gnulib/tests/test-errno.c
Copying file gnulib/tests/test-fclose.c
Copying file gnulib/tests/test-fcntl-h.c
Copying file gnulib/tests/test-fcntl.c
Copying file gnulib/tests/test-fdatasync.c
Copying file gnulib/tests/test-fdopen.c
Copying file gnulib/tests/test-fflush.c
Copying file gnulib/tests/test-fflush2.c
Copying file gnulib/tests/test-fflush2.sh
Copying file gnulib/tests/test-ffs.c
Copying file gnulib/tests/test-ffsl.c
Copying file gnulib/tests/test-fgetc.c
Copying file gnulib/tests/test-float.c
Copying file gnulib/tests/test-fnmatch-h.c
Copying file gnulib/tests/test-fnmatch.c
Copying file gnulib/tests/test-fpurge.c
Copying file gnulib/tests/test-fputc.c
Copying file gnulib/tests/test-fread.c
Copying file gnulib/tests/test-freading.c
Copying file gnulib/tests/test-fseek.c
Copying file gnulib/tests/test-fseek.sh
Copying file gnulib/tests/test-fseek2.sh
Copying file gnulib/tests/test-fseeko.c
Copying file gnulib/tests/test-fseeko.sh
Copying file gnulib/tests/test-fseeko2.sh
Copying file gnulib/tests/test-fseeko3.c
Copying file gnulib/tests/test-fseeko3.sh
Copying file gnulib/tests/test-fseeko4.c
Copying file gnulib/tests/test-fseeko4.sh
Copying file gnulib/tests/test-fstat.c
Copying file gnulib/tests/test-fsync.c
Copying file gnulib/tests/test-ftell.c
Copying file gnulib/tests/test-ftell.sh
Copying file gnulib/tests/test-ftell2.sh
Copying file gnulib/tests/test-ftell3.c
Copying file gnulib/tests/test-ftello.c
Copying file gnulib/tests/test-ftello.sh
Copying file gnulib/tests/test-ftello2.sh
Copying file gnulib/tests/test-ftello3.c
Copying file gnulib/tests/test-ftello4.c
Copying file gnulib/tests/test-ftello4.sh
Copying file gnulib/tests/test-ftruncate.c
Copying file gnulib/tests/test-ftruncate.sh
Copying file gnulib/tests/test-func.c
Copying file gnulib/tests/test-fwrite.c
Copying file gnulib/tests/test-getaddrinfo.c
Copying file gnulib/tests/test-getcwd-lgpl.c
Copying file gnulib/tests/test-getdelim.c
Copying file gnulib/tests/test-getdtablesize.c
Copying file gnulib/tests/test-getgroups.c
Copying file gnulib/tests/test-gethostname.c
Copying file gnulib/tests/test-getline.c
Copying file gnulib/tests/test-getopt-main.h
Copying file gnulib/tests/test-getopt-posix.c
Copying file gnulib/tests/test-getopt.h
Copying file gnulib/tests/test-getpeername.c
Copying file gnulib/tests/test-getprogname.c
Copying file gnulib/tests/test-getsockname.c
Copying file gnulib/tests/test-getsockopt.c
Copying file gnulib/tests/test-gettimeofday.c
Copying file gnulib/tests/test-grantpt.c
Copying file gnulib/tests/test-ignore-value.c
Copying file gnulib/tests/test-inet_ntop.c
Copying file gnulib/tests/test-inet_pton.c
Copying file gnulib/tests/test-init.sh
Copying file gnulib/tests/test-intprops.c
Copying file gnulib/tests/test-inttypes.c
Copying file gnulib/tests/test-ioctl.c
Copying file gnulib/tests/test-isatty.c
Copying file gnulib/tests/test-isblank.c
Copying file gnulib/tests/test-isnand-nolibm.c
Copying file gnulib/tests/test-isnand.h
Copying file gnulib/tests/test-isnanf-nolibm.c
Copying file gnulib/tests/test-isnanf.h
Copying file gnulib/tests/test-isnanl-nolibm.c
Copying file gnulib/tests/test-isnanl.h
Copying file gnulib/tests/test-langinfo.c
Copying file gnulib/tests/test-ldexp.c
Copying file gnulib/tests/test-ldexp.h
Copying file gnulib/tests/test-limits-h.c
Copying file gnulib/tests/test-listen.c
Copying file gnulib/tests/test-localcharset.c
Copying file gnulib/tests/test-locale.c
Copying file gnulib/tests/test-localeconv.c
Copying file gnulib/tests/test-localename.c
Copying file gnulib/tests/test-lseek.c
Copying file gnulib/tests/test-lseek.sh
Copying file gnulib/tests/test-lstat.c
Copying file gnulib/tests/test-lstat.h
Copying file gnulib/tests/test-malloca.c
Copying file gnulib/tests/test-math.c
Copying file gnulib/tests/test-mbrtowc-w32-1.sh
Copying file gnulib/tests/test-mbrtowc-w32-2.sh
Copying file gnulib/tests/test-mbrtowc-w32-3.sh
Copying file gnulib/tests/test-mbrtowc-w32-4.sh
Copying file gnulib/tests/test-mbrtowc-w32-5.sh
Copying file gnulib/tests/test-mbrtowc-w32.c
Copying file gnulib/tests/test-mbrtowc.c
Copying file gnulib/tests/test-mbrtowc1.sh
Copying file gnulib/tests/test-mbrtowc2.sh
Copying file gnulib/tests/test-mbrtowc3.sh
Copying file gnulib/tests/test-mbrtowc4.sh
Copying file gnulib/tests/test-mbrtowc5.sh
Copying file gnulib/tests/test-mbsinit.c
Copying file gnulib/tests/test-mbsinit.sh
Copying file gnulib/tests/test-mbsrtowcs.c
Copying file gnulib/tests/test-mbsrtowcs1.sh
Copying file gnulib/tests/test-mbsrtowcs2.sh
Copying file gnulib/tests/test-mbsrtowcs3.sh
Copying file gnulib/tests/test-mbsrtowcs4.sh
Copying file gnulib/tests/test-memchr.c
Copying file gnulib/tests/test-mkdir.c
Copying file gnulib/tests/test-mkdir.h
Copying file gnulib/tests/test-nanosleep.c
Copying file gnulib/tests/test-net_if.c
Copying file gnulib/tests/test-netdb.c
Copying file gnulib/tests/test-netinet_in.c
Copying file gnulib/tests/test-nl_langinfo.c
Copying file gnulib/tests/test-nl_langinfo.sh
Copying file gnulib/tests/test-nonblocking-misc.h
Copying file gnulib/tests/test-nonblocking-pipe-child.c
Copying file gnulib/tests/test-nonblocking-pipe-main.c
Copying file gnulib/tests/test-nonblocking-pipe.h
Copying file gnulib/tests/test-nonblocking-pipe.sh
Copying file gnulib/tests/test-nonblocking-reader.h
Copying file gnulib/tests/test-nonblocking-socket-child.c
Copying file gnulib/tests/test-nonblocking-socket-main.c
Copying file gnulib/tests/test-nonblocking-socket.h
Copying file gnulib/tests/test-nonblocking-socket.sh
Copying file gnulib/tests/test-nonblocking-writer.h
Copying file gnulib/tests/test-nonblocking.c
Copying file gnulib/tests/test-open.c
Copying file gnulib/tests/test-open.h
Copying file gnulib/tests/test-openpty.c
Copying file gnulib/tests/test-passfd.c
Copying file gnulib/tests/test-pathmax.c
Copying file gnulib/tests/test-perror.c
Copying file gnulib/tests/test-perror.sh
Copying file gnulib/tests/test-perror2.c
Copying file gnulib/tests/test-pipe.c
Copying file gnulib/tests/test-pipe2.c
Copying file gnulib/tests/test-poll-h.c
Copying file gnulib/tests/test-poll.c
Copying file gnulib/tests/test-posix_openpt.c
Copying file gnulib/tests/test-posix_spawn1.c
Copying file gnulib/tests/test-posix_spawn1.in.sh
Copying file gnulib/tests/test-posix_spawn2.c
Copying file gnulib/tests/test-posix_spawn2.in.sh
Copying file gnulib/tests/test-posix_spawn_file_actions_addclose.c
Copying file gnulib/tests/test-posix_spawn_file_actions_adddup2.c
Copying file gnulib/tests/test-posix_spawn_file_actions_addopen.c
Copying file gnulib/tests/test-pthread_sigmask1.c
Copying file gnulib/tests/test-pthread_sigmask2.c
Copying file gnulib/tests/test-ptsname.c
Copying file gnulib/tests/test-ptsname_r.c
Copying file gnulib/tests/test-raise.c
Copying file gnulib/tests/test-rawmemchr.c
Copying file gnulib/tests/test-read.c
Copying file gnulib/tests/test-readlink.c
Copying file gnulib/tests/test-readlink.h
Copying file gnulib/tests/test-recv.c
Copying file gnulib/tests/test-regex.c
Copying file gnulib/tests/test-sched.c
Copying file gnulib/tests/test-select-fd.c
Copying file gnulib/tests/test-select-in.sh
Copying file gnulib/tests/test-select-out.sh
Copying file gnulib/tests/test-select-stdin.c
Copying file gnulib/tests/test-select.c
Copying file gnulib/tests/test-select.h
Copying file gnulib/tests/test-send.c
Copying file gnulib/tests/test-setenv.c
Copying file gnulib/tests/test-setlocale1.c
Copying file gnulib/tests/test-setlocale1.sh
Copying file gnulib/tests/test-setlocale2.c
Copying file gnulib/tests/test-setlocale2.sh
Copying file gnulib/tests/test-setsockopt.c
Copying file gnulib/tests/test-sigaction.c
Copying file gnulib/tests/test-signal-h.c
Copying file gnulib/tests/test-signbit.c
Copying file gnulib/tests/test-sigpipe.c
Copying file gnulib/tests/test-sigpipe.sh
Copying file gnulib/tests/test-sigprocmask.c
Copying file gnulib/tests/test-sleep.c
Copying file gnulib/tests/test-snprintf.c
Copying file gnulib/tests/test-sockets.c
Copying file gnulib/tests/test-spawn.c
Copying file gnulib/tests/test-stat-time.c
Copying file gnulib/tests/test-stat.c
Copying file gnulib/tests/test-stat.h
Copying file gnulib/tests/test-stdalign.c
Copying file gnulib/tests/test-stdbool.c
Copying file gnulib/tests/test-stddef.c
Copying file gnulib/tests/test-stdint.c
Copying file gnulib/tests/test-stdio.c
Copying file gnulib/tests/test-stdlib.c
Copying file gnulib/tests/test-strchrnul.c
Copying file gnulib/tests/test-strerror.c
Copying file gnulib/tests/test-strerror_r.c
Copying file gnulib/tests/test-string.c
Copying file gnulib/tests/test-strings.c
Copying file gnulib/tests/test-strnlen.c
Copying file gnulib/tests/test-symlink.c
Copying file gnulib/tests/test-symlink.h
Copying file gnulib/tests/test-sys_ioctl.c
Copying file gnulib/tests/test-sys_select.c
Copying file gnulib/tests/test-sys_socket.c
Copying file gnulib/tests/test-sys_stat.c
Copying file gnulib/tests/test-sys_time.c
Copying file gnulib/tests/test-sys_types.c
Copying file gnulib/tests/test-sys_uio.c
Copying file gnulib/tests/test-sys_utsname.c
Copying file gnulib/tests/test-sys_wait.c
Copying file gnulib/tests/test-sys_wait.h
Copying file gnulib/tests/test-termios.c
Copying file gnulib/tests/test-thread_create.c
Copying file gnulib/tests/test-thread_self.c
Copying file gnulib/tests/test-time.c
Copying file gnulib/tests/test-ttyname_r.c
Copying file gnulib/tests/test-uname.c
Copying file gnulib/tests/test-unistd.c
Copying file gnulib/tests/test-unlockpt.c
Copying file gnulib/tests/test-unsetenv.c
Copying file gnulib/tests/test-usleep.c
Copying file gnulib/tests/test-vasnprintf.c
Copying file gnulib/tests/test-vasprintf.c
Copying file gnulib/tests/test-vc-list-files-cvs.sh
Copying file gnulib/tests/test-vc-list-files-git.sh
Copying file gnulib/tests/test-verify-try.c
Copying file gnulib/tests/test-verify.c
Copying file gnulib/tests/test-verify.sh
Copying file gnulib/tests/test-vsnprintf.c
Copying file gnulib/tests/test-wchar.c
Copying file gnulib/tests/test-wcrtomb-w32-1.sh
Copying file gnulib/tests/test-wcrtomb-w32-2.sh
Copying file gnulib/tests/test-wcrtomb-w32-3.sh
Copying file gnulib/tests/test-wcrtomb-w32-4.sh
Copying file gnulib/tests/test-wcrtomb-w32-5.sh
Copying file gnulib/tests/test-wcrtomb-w32.c
Copying file gnulib/tests/test-wcrtomb.c
Copying file gnulib/tests/test-wcrtomb.sh
Copying file gnulib/tests/test-wctype-h.c
Copying file gnulib/tests/test-wcwidth.c
Copying file gnulib/tests/test-write.c
Copying file gnulib/tests/test-xalloc-die.c
Copying file gnulib/tests/test-xalloc-die.sh
Copying file gnulib/tests/uniwidth/test-uc_width.c
Copying file gnulib/tests/uniwidth/test-uc_width2.c
Copying file gnulib/tests/uniwidth/test-uc_width2.sh
Copying file gnulib/tests/unlockpt.c
Copying file gnulib/tests/unused-parameter.h
Copying file gnulib/tests/w32sock.h
Copying file gnulib/tests/wait-process.c
Copying file gnulib/tests/wait-process.h
Copying file gnulib/tests/warn-on-use.h
Copying file gnulib/tests/wctob.c
Copying file gnulib/tests/wctomb-impl.h
Copying file gnulib/tests/wctomb.c
Copying file gnulib/tests/write.c
Copying file gnulib/tests/xalloc-die.c
Copying file gnulib/tests/xalloc.h
Copying file gnulib/tests/xmalloc.c
Copying file gnulib/tests/zerosize-ptr.h
Copying file m4/00gnulib.m4
Copying file m4/__inline.m4
Copying file m4/absolute-header.m4
Copying file m4/alloca.m4
Copying file m4/arpa_inet_h.m4
Copying file m4/asm-underscore.m4
Copying file m4/autobuild.m4
Copying file m4/base64.m4
Copying file m4/btowc.m4
Copying file m4/builtin-expect.m4
Copying file m4/byteswap.m4
Copying file m4/calloc.m4
Copying file m4/canonicalize.m4
Copying file m4/chown.m4
Copying file m4/clock_time.m4
Copying file m4/close.m4
Copying file m4/codeset.m4
Copying file m4/configmake.m4
Copying file m4/count-leading-zeros.m4
Copying file m4/count-one-bits.m4
Copying file m4/ctype.m4
Copying file m4/dirname.m4
Copying file m4/double-slash-root.m4
Copying file m4/dup.m4
Copying file m4/dup2.m4
Copying file m4/eealloc.m4
Copying file m4/environ.m4
Copying file m4/errno_h.m4
Copying file m4/error.m4
Copying file m4/execinfo.m4
Copying file m4/exponentd.m4
Copying file m4/exponentf.m4
Copying file m4/exponentl.m4
Copying file m4/extensions.m4
Copying file m4/extern-inline.m4
Copying file m4/fatal-signal.m4
Copying file m4/fclose.m4
Copying file m4/fcntl-o.m4
Copying file m4/fcntl.m4
Copying file m4/fcntl_h.m4
Copying file m4/fdatasync.m4
Copying file m4/fdopen.m4
Copying file m4/fflush.m4
Copying file m4/ffs.m4
Copying file m4/ffsl.m4
Copying file m4/flexmember.m4
Copying file m4/float_h.m4
Copying file m4/fnmatch.m4
Copying file m4/fnmatch_h.m4
Copying file m4/fpieee.m4
Copying file m4/fpurge.m4
Copying file m4/freading.m4
Copying file m4/fseek.m4
Copying file m4/fseeko.m4
Copying file m4/fstat.m4
Copying file m4/fsync.m4
Copying file m4/ftell.m4
Copying file m4/ftello.m4
Copying file m4/ftruncate.m4
Copying file m4/func.m4
Copying file m4/getaddrinfo.m4
Copying file m4/getcwd.m4
Copying file m4/getdelim.m4
Copying file m4/getdtablesize.m4
Copying file m4/getgroups.m4
Copying file m4/gethostname.m4
Copying file m4/getline.m4
Copying file m4/getopt.m4
Copying file m4/getpagesize.m4
Copying file m4/getpass.m4
Copying file m4/getprogname.m4
Copying file m4/gettimeofday.m4
Copying file m4/getugroups.m4
Copying file m4/glibc21.m4
Copying file m4/gnulib-common.m4
Copying file m4/gnulib-tool.m4
Copying file m4/grantpt.m4
Copying file m4/host-cpu-c-abi.m4
Copying file m4/hostent.m4
Copying file m4/include_next.m4
Copying file m4/inet_ntop.m4
Copying file m4/inet_pton.m4
Copying file m4/intl-thread-locale.m4
Copying file m4/intlmacosx.m4
Copying file m4/intmax_t.m4
Copying file m4/inttypes-pri.m4
Copying file m4/inttypes.m4
Copying file m4/inttypes_h.m4
Copying file m4/ioctl.m4
Copying file m4/isatty.m4
Copying file m4/isblank.m4
Copying file m4/isnand.m4
Copying file m4/isnanf.m4
Copying file m4/isnanl.m4
Copying file m4/langinfo_h.m4
Copying file m4/largefile.m4
Copying file m4/lcmessage.m4
Copying file m4/ldexp.m4
Copying file m4/lib-ld.m4
Copying file m4/lib-link.m4
Copying file m4/lib-prefix.m4
Copying file m4/libunistring-base.m4
Copying file m4/limits-h.m4
Copying file m4/localcharset.m4
Copying file m4/locale-fr.m4
Copying file m4/locale-ja.m4
Copying file m4/locale-tr.m4
Copying file m4/locale-zh.m4
Copying file m4/locale_h.m4
Copying file m4/localeconv.m4
Copying file m4/localename.m4
Copying file m4/localtime-buffer.m4
Copying file m4/lock.m4
Copying file m4/longlong.m4
Copying file m4/lseek.m4
Copying file m4/lstat.m4
Copying file m4/malloc.m4
Copying file m4/malloca.m4
Copying file m4/manywarnings-c++.m4
Copying file m4/manywarnings.m4
Copying file m4/math_h.m4
Copying file m4/mbrtowc.m4
Copying file m4/mbsinit.m4
Copying file m4/mbsrtowcs.m4
Copying file m4/mbstate_t.m4
Copying file m4/mbtowc.m4
Copying file m4/memchr.m4
Copying file m4/mgetgroups.m4
Copying file m4/mkdir.m4
Copying file m4/mkdtemp.m4
Copying file m4/mkostemp.m4
Copying file m4/mkostemps.m4
Copying file m4/mktime.m4
Copying file m4/mmap-anon.m4
Copying file m4/mode_t.m4
Copying file m4/msvc-inval.m4
Copying file m4/msvc-nothrow.m4
Copying file m4/multiarch.m4
Copying file m4/nanosleep.m4
Copying file m4/net_if_h.m4
Copying file m4/netdb_h.m4
Copying file m4/netinet_in_h.m4
Copying file m4/nl_langinfo.m4
Copying file m4/nocrash.m4
Copying file m4/nonblocking.m4
Copying file m4/off_t.m4
Copying file m4/open-cloexec.m4
Copying file m4/open.m4
Copying file m4/passfd.m4
Copying file m4/pathmax.m4
Copying file m4/perror.m4
Copying file m4/physmem.m4
Copying file m4/pipe.m4
Copying file m4/pipe2.m4
Copying file m4/poll.m4
Copying file m4/poll_h.m4
Copying file m4/posix-shell.m4
Copying file m4/posix_openpt.m4
Copying file m4/posix_spawn.m4
Copying file m4/printf.m4
Copying file m4/pthread.m4
Copying file m4/pthread_rwlock_rdlock.m4
Copying file m4/pthread_sigmask.m4
Copying file m4/ptsname.m4
Copying file m4/ptsname_r.m4
Copying file m4/pty.m4
Copying file m4/pty_h.m4
Copying file m4/putenv.m4
Copying file m4/raise.m4
Copying file m4/rawmemchr.m4
Copying file m4/read.m4
Copying file m4/readlink.m4
Copying file m4/realloc.m4
Copying file m4/regex.m4
Copying file m4/sched_h.m4
Copying file m4/secure_getenv.m4
Copying file m4/select.m4
Copying file m4/servent.m4
Copying file m4/setenv.m4
Copying file m4/setlocale.m4
Copying file m4/sh-filename.m4
Copying file m4/sig_atomic_t.m4
Copying file m4/sigaction.m4
Copying file m4/signal_h.m4
Copying file m4/signalblocking.m4
Copying file m4/signbit.m4
Copying file m4/sigpipe.m4
Copying file m4/size_max.m4
Copying file m4/sleep.m4
Copying file m4/snprintf.m4
Copying file m4/socketlib.m4
Copying file m4/sockets.m4
Copying file m4/socklen.m4
Copying file m4/sockpfaf.m4
Copying file m4/spawn_h.m4
Copying file m4/ssize_t.m4
Copying file m4/stat-time.m4
Copying file m4/stat.m4
Copying file m4/stdalign.m4
Copying file m4/stdarg.m4
Copying file m4/stdbool.m4
Copying file m4/stddef_h.m4
Copying file m4/stdint.m4
Copying file m4/stdint_h.m4
Copying file m4/stdio_h.m4
Copying file m4/stdlib_h.m4
Copying file m4/stpcpy.m4
Copying file m4/strcase.m4
Copying file m4/strchrnul.m4
Copying file m4/strdup.m4
Copying file m4/strerror.m4
Copying file m4/strerror_r.m4
Copying file m4/string_h.m4
Copying file m4/strings_h.m4
Copying file m4/strndup.m4
Copying file m4/strnlen.m4
Copying file m4/strptime.m4
Copying file m4/strsep.m4
Copying file m4/strtok_r.m4
Copying file m4/symlink.m4
Copying file m4/sys_ioctl_h.m4
Copying file m4/sys_select_h.m4
Copying file m4/sys_socket_h.m4
Copying file m4/sys_stat_h.m4
Copying file m4/sys_time_h.m4
Copying file m4/sys_types_h.m4
Copying file m4/sys_uio_h.m4
Copying file m4/sys_utsname_h.m4
Copying file m4/sys_wait_h.m4
Copying file m4/tempname.m4
Copying file m4/termios_h.m4
Copying file m4/thread.m4
Copying file m4/threadlib.m4
Copying file m4/time_h.m4
Copying file m4/time_r.m4
Copying file m4/timegm.m4
Copying file m4/tm_gmtoff.m4
Copying file m4/ttyname_r.m4
Copying file m4/uname.m4
Copying file m4/ungetc.m4
Copying file m4/unistd_h.m4
Copying file m4/unlockpt.m4
Copying file m4/usleep.m4
Copying file m4/vasnprintf.m4
Copying file m4/vasprintf.m4
Copying file m4/vsnprintf.m4
Copying file m4/wait-process.m4
Copying file m4/waitpid.m4
Copying file m4/warn-on-use.m4
Copying file m4/warnings.m4
Copying file m4/wchar_h.m4
Copying file m4/wchar_t.m4
Copying file m4/wcrtomb.m4
Copying file m4/wctob.m4
Copying file m4/wctomb.m4
Copying file m4/wctype_h.m4
Copying file m4/wcwidth.m4
Copying file m4/wint_t.m4
Copying file m4/write.m4
Copying file m4/xalloc.m4
Copying file m4/xsize.m4
Copying file maint.mk
Creating gnulib/lib/gnulib.mk
Creating m4/gnulib-cache.m4
Creating m4/gnulib-comp.m4
Creating gnulib/tests/gnulib.mk
Updating ./build-aux/.gitignore (backup in ./build-aux/.gitignore~)
Creating ./gnulib/lib/.gitignore
Creating ./gnulib/lib/glthread/.gitignore
Creating ./gnulib/lib/uniwidth/.gitignore
Creating ./gnulib/tests/.gitignore
Creating ./gnulib/tests/glthread/.gitignore
Creating ./gnulib/tests/uniwidth/.gitignore
Updating ./m4/.gitignore (backup in ./m4/.gitignore~)
Finished.
You may need to add #include directives for the following .h files.
#include <arpa/inet.h>
#include <byteswap.h>
#include <execinfo.h>
#include <fcntl.h>
#include <fnmatch.h>
#include <locale.h>
#include <math.h>
#include <net/if.h>
#include <netdb.h>
#include <poll.h>
#include <pthread.h>
#include <pty.h>
#include <regex.h>
#include <sched.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/utsname.h>
#include <sys/wait.h>
#include <termios.h>
#include <time.h>
#include <unistd,h>
#include <unistd.h>
#include <wchar.h>
/* Include only after all system include files. */
#include "areadlink.h"
#include "base64.h"
#include "bitrotate.h"
#include "c-ctype.h"
#include "c-strcase.h"
#include "c-strcasestr.h"
#include "configmake.h"
#include "count-leading-zeros.h"
#include "count-one-bits.h"
#include "dirname.h"
#include "ignore-value.h"
#include "intprops.h"
#include "mgetgroups.h"
#include "nonblocking.h"
#include "passfd.h"
#include "physmem.h"
#include "stat-time.h"
#include "verify.h"
You may need to use the following Makefile variables when linking.
Use them in <program>_LDADD when linking a program, or
in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library.
$(GETADDRINFO_LIB)
$(GETHOSTNAME_LIB)
$(HOSTENT_LIB)
$(INET_NTOP_LIB)
$(INET_PTON_LIB)
$(LDEXP_LIBM)
$(LIBSOCKET)
$(LIB_CLOCK_GETTIME)
$(LIB_EXECINFO)
$(LIB_FDATASYNC)
$(LIB_POLL)
$(LIB_PTHREAD)
$(LIB_PTHREAD_SIGMASK)
$(LIB_SELECT)
$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise
$(LTLIBTHREAD) when linking with libtool, $(LIBTHREAD) otherwise
$(PTY_LIB)
$(SERVENT_LIB)
Don't forget to
- "include gnulib.mk" from within "gnulib/lib/Makefile.am",
- "include gnulib.mk" from within "gnulib/tests/Makefile.am",
- mention "-I m4" in ACLOCAL_AMFLAGS in Makefile.am,
- mention "m4/gnulib-cache.m4" in EXTRA_DIST in Makefile.am,
- invoke gl_EARLY in ./configure.ac, right after AC_PROG_CC,
- invoke gl_INIT in ./configure.ac.
running: AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install --force -I m4 --no-recursive
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I m4 --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: true --copy --force
autoreconf: running: /usr/bin/autoconf --include=m4 --force
autoreconf: running: /usr/bin/autoheader --include=m4 --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:126: installing 'build-aux/compile'
configure.ac:27: installing 'build-aux/missing'
Makefile.am: installing './INSTALL'
examples/Makefile.am: installing 'build-aux/depcomp'
parallel-tests: installing 'build-aux/test-driver'
autoreconf: Leaving directory `.'
./bootstrap: ln -fs ../.gnulib/build-aux/install-sh build-aux/install-sh
./bootstrap: ln -fs ../.gnulib/build-aux/depcomp build-aux/depcomp
./bootstrap: ln -fs ../.gnulib/build-aux/config.guess build-aux/config.guess
./bootstrap: ln -fs ../.gnulib/build-aux/config.sub build-aux/config.sub
./bootstrap: ln -fs .gnulib/doc/INSTALL INSTALL
./bootstrap: done. Now you can run './configure'.
I am going to run configure with no arguments - if you wish
to pass any to it, please specify them on the ./autogen.sh command line.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking how to create a pax tar archive... gnutar
checking whether make supports nested variables... (cached) yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for ar... ar
checking for ranlib... ranlib
checking whether gcc and cc understand -c and -o together... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for gcc option to accept ISO C99... -std=gnu99
checking for gcc -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
configure: autobuild project... libvirt
configure: autobuild revision... v2.1.0-rc1-8457-g83b62e4
configure: autobuild hostname... virtlab205.virt.lab.eng.bos.redhat.com
configure: autobuild timestamp... 20190304T092411Z
checking for sys/socket.h... yes
checking for arpa/inet.h... yes
checking for features.h... yes
checking for sys/param.h... yes
checking for unistd.h... (cached) yes
checking for execinfo.h... yes
checking for fnmatch.h... yes
checking for wctype.h... yes
checking for sys/stat.h... (cached) yes
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for stdio_ext.h... yes
checking for termios.h... yes
checking for sys/time.h... yes
checking for grp.h... yes
checking for langinfo.h... yes
checking for limits.h... yes
checking for xlocale.h... yes
checking for sys/mman.h... yes
checking for pty.h... yes
checking for poll.h... yes
checking for sys/ioctl.h... yes
checking for sys/filio.h... no
checking for pthread.h... yes
checking for malloc.h... yes
checking for sys/select.h... yes
checking for wchar.h... yes
checking for stdint.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/uio.h... yes
checking for sys/utsname.h... yes
checking for sys/wait.h... yes
checking for crtdefs.h... no
checking for inttypes.h... (cached) yes
checking for math.h... yes
checking for sys/types.h... (cached) yes
checking for spawn.h... yes
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking whether <sys/socket.h> is self-contained... yes
checking for shutdown... yes
checking whether <sys/socket.h> defines the SHUT_* macros... yes
checking for struct sockaddr_storage... yes
checking for sa_family_t... yes
checking for struct sockaddr_storage.ss_family... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for C/C++ restrict keyword... __restrict
checking whether <wchar.h> uses 'inline' correctly... yes
checking for btowc... yes
checking for canonicalize_file_name... yes
checking for getcwd... yes
checking for readlink... yes
checking for realpath... yes
checking for readlinkat... yes
checking for chown... yes
checking for fchown... yes
checking for _set_invalid_parameter_handler... no
checking for fcntl... yes
checking for symlink... yes
checking for ffsl... yes
checking for fnmatch... yes
checking for isblank... yes
checking for iswctype... yes
checking for mbsrtowcs... yes
checking for mempcpy... yes
checking for wmemchr... yes
checking for wmemcpy... yes
checking for wmempcpy... yes
checking for fpurge... no
checking for __fpurge... yes
checking for __freading... yes
checking for fsync... yes
checking for getdelim... yes
checking for getdtablesize... yes
checking for getpass... yes
checking for __fsetlocking... yes
checking for gettimeofday... yes
checking for lstat... yes
checking for mbsinit... yes
checking for mbrtowc... yes
checking for mprotect... yes
checking for getgrouplist... yes
checking for mkostemp... yes
checking for mkostemps... yes
checking for tzset... yes
checking for nl_langinfo... yes
checking for recvmsg... yes
checking for sendmsg... yes
checking for strerror_r... yes
checking for __xpg_strerror_r... yes
checking for pipe... yes
checking for pipe2... yes
checking for posix_openpt... yes
checking for pthread_sigmask... no
checking for secure_getenv... yes
checking for getuid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getegid... yes
checking for setenv... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for siginterrupt... yes
checking for sleep... yes
checking for snprintf... yes
checking for strdup... yes
checking for catgets... yes
checking for strndup... yes
checking for strptime... yes
checking for localtime_r... yes
checking for timegm... yes
checking for usleep... yes
checking for vasnprintf... no
checking for wcrtomb... yes
checking for iswcntrl... yes
checking for wcwidth... yes
checking for ftruncate... yes
checking for getprogname... no
checking for getexecname... no
checking for newlocale... yes
checking for uselocale... yes
checking for duplocale... yes
checking for freelocale... yes
checking for socketpair... yes
checking for ptsname_r... yes
checking for shutdown... (cached) yes
checking for wctob... yes
checking for cfmakeraw... yes
checking for fallocate... yes
checking for getifaddrs... yes
checking for getmntent_r... yes
checking for getpwuid_r... yes
checking for getrlimit... yes
checking for if_indextoname... yes
checking for mmap... yes
checking for posix_fallocate... yes
checking for posix_memalign... yes
checking for prlimit... yes
checking for sched_getaffinity... yes
checking for sched_setscheduler... yes
checking for setgroups... yes
checking for setns... yes
checking for setrlimit... yes
checking for sysctlbyname... no
checking for unshare... yes
checking for nl_langinfo and CODESET... yes
checking for a traditional french locale... fr_FR
checking whether malloc, realloc, calloc are POSIX compliant... yes
checking whether // is distinct from /... no
checking whether realpath works... yes
checking for uid_t in sys/types.h... yes
checking for unistd.h... (cached) yes
checking for working chown... yes
checking whether chown dereferences symlinks... yes
checking whether chown honors trailing slash... yes
checking whether chown always updates ctime... yes
checking for unsigned long long int... yes
checking if environ is properly declared... yes
checking for complete errno.h... yes
checking for working fcntl.h... yes
checking for pid_t... yes
checking for mode_t... yes
checking whether fdatasync is declared... yes
checking for mbstate_t... yes
checking whether stdin defaults to large file offsets... yes
checking whether fseeko is declared... yes
checking for fseeko... yes
checking whether fflush works on input streams... no
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking whether ftello is declared... yes
checking for ftello... yes
checking whether ftello works... yes
checking for library containing gethostbyname... none required
checking for gethostbyname... yes
checking for library containing getservbyname... none required
checking for getservbyname... yes
checking for library containing inet_ntop... none required
checking whether inet_ntop is declared... yes
checking for IPv4 sockets... yes
checking for IPv6 sockets... yes
checking whether getcwd (NULL, 0) allocates memory for result... yes
checking for getcwd with POSIX signature... yes
checking whether getdelim is declared... yes
checking whether getdtablesize is declared... yes
checking type of array argument to getgroups... gid_t
checking whether getline is declared... yes
checking whether getopt is POSIX compatible... yes
checking whether fflush_unlocked is declared... yes
checking whether flockfile is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether funlockfile is declared... yes
checking whether putc_unlocked is declared... yes
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking whether ldexp() can be used without linking with libm... yes
checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... no
checking for wchar_t... yes
checking for good max_align_t... no
checking whether NULL can be used in arbitrary expressions... yes
checking for ld used by gcc -std=gnu99... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking 32-bit host C ABI... no
checking for the common suffixes of directories in the library search path... lib64,lib64
checking whether imported symbols can be declared weak... yes
checking whether the linker supports --as-needed... yes
checking whether the linker supports --push-state... yes
checking for pthread.h... (cached) yes
checking for multithread API to use... posix
checking whether lstat correctly handles trailing slash... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for long long int... yes
checking for a traditional japanese locale... ja_JP
checking for a transitional chinese locale... zh_CN.GB18030
checking for a french Unicode locale... fr_FR.UTF-8
checking for inline... inline
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking whether memchr works... yes
checking whether time_t is signed... yes
checking whether alarm is declared... yes
checking for working mktime... yes
checking whether C symbols are prefixed with underscore at the linker level... no
checking for O_CLOEXEC... yes
checking for promoted mode_t type... mode_t
checking for library containing forkpty... -lutil
checking whether strerror(0) succeeds... yes
checking for strerror_r with POSIX signature... no
checking whether __xpg_strerror_r works... yes
checking whether strerror_r is declared... yes
checking for external symbol _system_configuration... no
checking for library containing setsockopt... none needed
checking for sigset_t... yes
checking for SIGPIPE... yes
checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
checking whether <sys/select.h> is self-contained... yes
checking whether setenv is declared... yes
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for tsearch... yes
checking whether snprintf returns a byte count as in C99... yes
checking whether snprintf is declared... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for wint_t... yes
checking whether wint_t is too small... no
checking whether stdint.h conforms to C99... yes
checking whether stdint.h predates C++11... no
checking whether stdint.h has UINTMAX_WIDTH etc.... no
checking whether strdup is declared... yes
checking whether strndup is declared... yes
checking whether strnlen is declared... yes
checking for struct tm.tm_gmtoff... yes
checking whether strtok_r is declared... yes
checking for struct timespec in <time.h>... yes
checking whether ttyname_r is declared... yes
checking whether unsetenv is declared... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for intmax_t... yes
checking where to find the exponent in a 'double'... word 1 bit 20
checking for snprintf... (cached) yes
checking for strnlen... yes
checking for wcslen... yes
checking for wcsnlen... yes
checking for mbrtowc... (cached) yes
checking for wcrtomb... (cached) yes
checking whether _snprintf is declared... no
checking whether vsnprintf is declared... yes
checking whether strerror_r is declared... (cached) yes
checking for strerror_r... (cached) yes
checking whether strerror_r returns char *... yes
checking for sig_atomic_t... yes
checking whether ungetc works on arbitrary bytes... yes
checking for inttypes.h... (cached) yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking where to find the exponent in a 'float'... word 0 bit 23
checking whether byte ordering is bigendian... no
checking whether long double and double are the same... no
checking for LC_MESSAGES... yes
checking whether uselocale works... yes
checking for fake locale system (OpenBSD)... no
checking for Solaris 11.4 locale system... no
checking for getlocalename_l... no
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for CFLocaleCopyPreferredLanguages... no
checking for library containing posix_spawn... none required
checking for posix_spawn... yes
checking whether posix_spawn works... yes
checking whether posix_spawnattr_setschedpolicy is supported... yes
checking whether posix_spawnattr_setschedparam is supported... yes
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking for alloca as a compiler built-in... yes
checking whether btowc(0) is correct... yes
checking whether btowc(EOF) is correct... yes
checking for __builtin_expect... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking for library containing clock_gettime... none required
checking for clock_gettime... yes
checking for clock_settime... yes
checking whether // is distinct from /... (cached) no
checking whether dup2 works... yes
checking for library containing backtrace_symbols_fd... none required
checking whether fflush works on input streams... (cached) no
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
checking for library containing fdatasync... none required
checking whether fflush works on input streams... (cached) no
checking for ffs... yes
checking for flexible array member... yes
checking whether conversion from 'int' to 'long double' works... yes
checking for working POSIX fnmatch... yes
checking whether fpurge is declared... no
checking for fseeko... (cached) yes
checking whether fflush works on input streams... (cached) no
checking for _fseeki64... no
checking for ftello... (cached) yes
checking whether ftello works... (cached) yes
checking whether __func__ is available... yes
checking how to do getaddrinfo, freeaddrinfo and getnameinfo... checking for library containing getaddrinfo... none required
checking for getaddrinfo... yes
checking whether gai_strerror is declared... yes
checking whether gai_strerrorA is declared... no
checking for gai_strerror with POSIX signature... yes
checking for struct sockaddr.sa_len... no
checking whether getaddrinfo is declared... yes
checking whether freeaddrinfo is declared... yes
checking whether getnameinfo is declared... yes
checking for struct addrinfo... yes
checking for working getdelim function... yes
checking whether getdtablesize works... yes
checking for getgroups... yes
checking for working getgroups... yes
checking whether getgroups handles negative values... yes
checking for gethostname... yes
checking for HOST_NAME_MAX... yes
checking for getline... yes
checking for working getline function... yes
checking whether gettimeofday clobbers localtime buffer... no
checking for gettimeofday with POSIX signature... almost
checking for library containing gethostbyname... (cached) none required
checking for gethostbyname... (cached) yes
checking for library containing inet_ntop... (cached) none required
checking whether inet_ntop is declared... (cached) yes
checking for library containing inet_pton... none required
checking whether inet_pton is declared... yes
checking for ioctl... yes
checking for ioctl with POSIX signature... no
checking whether langinfo.h defines CODESET... yes
checking whether langinfo.h defines T_FMT_AMPM... yes
checking whether langinfo.h defines ALTMON_1... no
checking whether langinfo.h defines ERA... yes
checking whether langinfo.h defines YESEXPR... yes
checking whether the compiler supports the __inline keyword... yes
checking whether locale.h conforms to POSIX:2001... yes
checking whether locale.h defines locale_t... yes
checking whether struct lconv is properly defined... yes
checking for pthread_rwlock_t... yes
checking whether pthread_rwlock_rdlock prefers a writer to a reader... no
checking whether lseek detects pipes... yes
checking whether mbrtowc handles incomplete characters... yes
checking whether mbrtowc works as well as mbtowc... yes
checking whether mbrtowc handles a NULL pwc argument... yes
checking whether mbrtowc handles a NULL string argument... yes
checking whether mbrtowc has a correct return value... yes
checking whether mbrtowc returns 0 when parsing a NUL character... yes
checking whether mbrtowc works on empty input... no
checking whether the C locale is free of encoding errors... no
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether mbsrtowcs works... yes
checking whether mkdir handles trailing slash... yes
checking whether mkdir handles trailing dot... yes
checking for mkdtemp... yes
checking for __mktime_internal... no
checking whether <net/if.h> is self-contained... yes
checking whether <netinet/in.h> is self-contained... yes
checking whether YESEXPR works... yes
checking whether open recognizes a trailing slash... yes
checking whether openpty is declared... yes
checking for const-safe openpty signature... yes
checking for struct msghdr.msg_accrights... no
checking whether perror matches strerror... yes
checking for sys/pstat.h... no
checking for sys/sysmp.h... no
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
checking for sys/param.h... (cached) yes
checking for sys/systemcfg.h... no
checking for sys/sysctl.h... yes
checking for pstat_getstatic... no
checking for pstat_getdynamic... no
checking for sysmp... no
checking for getsysinfo... no
checking for sysctl... yes
checking for table... no
checking for sysinfo... yes
checking for struct sysinfo.mem_unit... yes
checking for poll... yes
checking for a shell that conforms to POSIX... /bin/sh
checking whether <pthread.h> pollutes the namespace... no
checking for pthread_t... yes
checking for pthread_spinlock_t... yes
checking for library containing pthread_create and pthread_join... -pthread
checking for pthread_sigmask in -pthread -Wl,--push-state -Wl,--no-as-needed -lpthread -Wl,--pop-state... yes
checking whether pthread_sigmask is only a macro... no
checking whether pthread_sigmask returns error numbers... yes
checking whether pthread_sigmask unblocks signals correctly... guessing yes
checking for raise... yes
checking for sigprocmask... yes
checking for rawmemchr... yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking for working re_compile_pattern... no
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking whether isblank is declared... yes
checking whether select supports a 0 argument... yes
checking whether select detects invalid fds... yes
checking for library containing getservbyname... (cached) none required
checking for getservbyname... (cached) yes
checking whether setenv validates arguments... yes
checking for struct sigaction.sa_sigaction... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking for sigprocmask... (cached) yes
checking for stdint.h... (cached) yes
checking for SIZE_MAX... yes
checking whether sleep is declared... yes
checking for working sleep... yes
checking for snprintf... (cached) yes
checking whether snprintf respects a size of 1... yes
checking whether printf supports POSIX/XSI format strings with positions... yes
checking for socklen_t... yes
checking for ssize_t... yes
checking whether stat handles trailing slashes on files... yes
checking for struct stat.st_atim.tv_nsec... yes
checking whether struct stat.st_atim is of type struct timespec... yes
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
checking for working stdalign.h... yes
checking for va_copy... yes
checking for good max_align_t... (cached) no
checking whether NULL can be used in arbitrary expressions... (cached) yes
checking which flavor of printf attribute matches inttypes macros... system
checking for stpcpy... yes
checking for strcasecmp... yes
checking for strncasecmp... yes
checking whether strncasecmp is declared... yes
checking for strchrnul... yes
checking whether strchrnul works... yes
checking for working strerror function... yes
checking for working strndup... yes
checking for working strnlen... yes
checking for strsep... yes
checking for strtok_r... yes
checking whether strtok_r works... yes
checking whether <sys/ioctl.h> declares ioctl... yes
checking for nlink_t... (cached) yes
checking for struct utsname... yes
checking whether localtime_r is declared... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking for ttyname_r... yes
checking whether ttyname_r is compatible with its POSIX signature... yes
checking whether ttyname_r works with small buffers... yes
checking for uname... yes
checking for unsetenv... yes
checking for unsetenv() return type... int
checking whether unsetenv obeys POSIX... yes
checking for useconds_t... yes
checking whether usleep allows large arguments... yes
checking for ptrdiff_t... yes
checking for vasprintf... yes
checking for vsnprintf... yes
checking whether snprintf respects a size of 1... (cached) yes
checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
checking whether mbrtowc handles incomplete characters... (cached) yes
checking whether mbrtowc works as well as mbtowc... (cached) yes
checking whether wcrtomb return value is correct... yes
checking whether iswcntrl works... yes
checking for towlower... yes
checking for wctype_t... yes
checking for wctrans_t... yes
checking whether wcwidth is declared... yes
checking whether wcwidth works reasonably in UTF-8 locales... yes
checking for stdint.h... (cached) yes
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional french locale... (cached) fr_FR
checking for a turkish Unicode locale... tr_TR.UTF-8
checking whether dup works... yes
checking for error_at_line... yes
checking whether fdopen sets errno... yes
checking for getpagesize... yes
checking whether getpagesize is declared... yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether __argv is declared... no
checking for grantpt... yes
checking whether byte ordering is bigendian... (cached) no
checking whether byte ordering is bigendian... (cached) no
checking whether INT32_MAX < INTMAX_MAX... yes
checking whether INT64_MAX == LONG_MAX... yes
checking whether UINT32_MAX < UINTMAX_MAX... yes
checking whether UINT64_MAX == ULONG_MAX... yes
checking whether isnan(double) can be used without linking with libm... yes
checking where to find the exponent in a 'double'... (cached) word 1 bit 20
checking whether isnan(float) can be used without linking with libm... yes
checking whether isnan(float) works... yes
checking where to find the exponent in a 'float'... (cached) word 0 bit 23
checking whether isnan(long double) can be used without linking with libm... yes
checking whether isnanl works... yes
checking where to find the exponent in a 'long double'... word 2 bit 0
checking whether NAN macro works... yes
checking whether HUGE_VAL works... yes
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional japanese locale... (cached) ja_JP
checking for a transitional chinese locale... (cached) zh_CN.GB18030
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional japanese locale... (cached) ja_JP
checking for a transitional chinese locale... (cached) zh_CN.GB18030
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking for library containing nanosleep... none required
checking for working nanosleep... no (mishandles large arguments)
checking for library containing if_nameindex... none required
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking whether posix_spawn_file_actions_addclose works... yes
checking whether posix_spawn_file_actions_adddup2 works... yes
checking whether posix_spawn_file_actions_addopen works... yes
checking for ptsname... yes
checking whether ptsname sets errno on failure... yes
checking whether ptsname_r has the same signature as in glibc... yes
checking for putenv compatible with GNU and SVID... yes
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional japanese locale... (cached) ja_JP
checking for a transitional chinese locale... (cached) zh_CN.GB18030
checking for signbit macro... yes
checking for signbit compiler built-ins... yes
checking for posix_spawnattr_t... yes
checking for posix_spawn_file_actions_t... yes
checking for mmap... (cached) yes
checking for MAP_ANONYMOUS... yes
checking whether symlink handles trailing slash correctly... yes
checking for pthread_atfork... yes
checking for unlockpt... yes
checking for waitid... yes
checking for a traditional french locale... (cached) fr_FR
checking for a french Unicode locale... (cached) fr_FR.UTF-8
checking for a traditional japanese locale... (cached) ja_JP
checking for a transitional chinese locale... (cached) zh_CN.GB18030
checking whether wctob works... yes
checking whether wctob is declared... yes
checking for uid_t in sys/types.h... (cached) yes
checking for sys/mkdev.h... (cached) no
checking for sys/sysmacros.h... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc -std=gnu99... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions... no
checking for gcc -std=gnu99 option to produce PIC... -fPIC -DPIC
checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works... yes
checking if gcc -std=gnu99 static flag -static works... no
checking if gcc -std=gnu99 supports -c -o file.o... yes
checking if gcc -std=gnu99 supports -c -o file.o... (cached) yes
checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for ld used by gcc -std=gnu99... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for how to mark DSO non-deletable at runtime... -Wl,-z -Wl,nodelete
checking for how to set DSO symbol versions... -Wl,--version-script=
checking whether C compiler handles -Werror -Wunknown-warning-option... no
checking whether the C compiler's -Wformat allows NULL strings... yes
checking whether pragma GCC diagnostic push works... yes
checking whether the C compiler's -Wlogical-op gives bogus warnings... no
checking whether gcc gives bogus warnings for -Wlogical-op... no
checking whether clang gives bogus warnings for -Wdouble-promotion... no
checking whether -Wno-missing-field-initializers is supported... yes
checking whether -Wno-missing-field-initializers is needed... no
checking whether -Wuninitialized is supported... yes
checking max safe object size... 9223372036854775807
checking whether C compiler handles -Wframe-larger-than=4096... yes
checking whether C compiler handles -Wframe-larger-than=32768... yes
checking whether C compiler handles -fno-common... yes
checking whether C compiler handles -W... yes
checking whether C compiler handles -Waddress... yes
checking whether C compiler handles -Waggressive-loop-optimizations... yes
checking whether C compiler handles -Wall... yes
checking whether C compiler handles -Wattribute-alias... no
checking whether C compiler handles -Wattributes... yes
checking whether C compiler handles -Wbad-function-cast... yes
checking whether C compiler handles -Wbool-compare... no
checking whether C compiler handles -Wbool-operation... no
checking whether C compiler handles -Wbuiltin-declaration-mismatch... no
checking whether C compiler handles -Wbuiltin-macro-redefined... yes
checking whether C compiler handles -Wcast-align... yes
checking whether C compiler handles -Wcast-align=strict... no
checking whether C compiler handles -Wcast-function-type... no
checking whether C compiler handles -Wchar-subscripts... yes
checking whether C compiler handles -Wclobbered... yes
checking whether C compiler handles -Wcomment... yes
checking whether C compiler handles -Wcomments... yes
checking whether C compiler handles -Wcoverage-mismatch... yes
checking whether C compiler handles -Wcpp... yes
checking whether C compiler handles -Wdangling-else... no
checking whether C compiler handles -Wdate-time... no
checking whether C compiler handles -Wdeprecated-declarations... yes
checking whether C compiler handles -Wdesignated-init... no
checking whether C compiler handles -Wdiscarded-array-qualifiers... no
checking whether C compiler handles -Wdiscarded-qualifiers... no
checking whether C compiler handles -Wdiv-by-zero... yes
checking whether C compiler handles -Wdouble-promotion... yes
checking whether C compiler handles -Wduplicated-cond... no
checking whether C compiler handles -Wduplicate-decl-specifier... no
checking whether C compiler handles -Wempty-body... yes
checking whether C compiler handles -Wendif-labels... yes
checking whether C compiler handles -Wexpansion-to-defined... no
checking whether C compiler handles -Wextra... yes
checking whether C compiler handles -Wformat-contains-nul... yes
checking whether C compiler handles -Wformat-extra-args... yes
checking whether C compiler handles -Wformat-security... yes
checking whether C compiler handles -Wformat-y2k... yes
checking whether C compiler handles -Wformat-zero-length... yes
checking whether C compiler handles -Wframe-address... no
checking whether C compiler handles -Wfree-nonheap-object... yes
checking whether C compiler handles -Whsa... no
checking whether C compiler handles -Wif-not-aligned... no
checking whether C compiler handles -Wignored-attributes... no
checking whether C compiler handles -Wignored-qualifiers... yes
checking whether C compiler handles -Wimplicit... yes
checking whether C compiler handles -Wimplicit-function-declaration... yes
checking whether C compiler handles -Wimplicit-int... yes
checking whether C compiler handles -Wincompatible-pointer-types... no
checking whether C compiler handles -Winit-self... yes
checking whether C compiler handles -Winline... yes
checking whether C compiler handles -Wint-conversion... no
checking whether C compiler handles -Wint-in-bool-context... no
checking whether C compiler handles -Wint-to-pointer-cast... yes
checking whether C compiler handles -Winvalid-memory-model... yes
checking whether C compiler handles -Winvalid-pch... yes
checking whether C compiler handles -Wlogical-not-parentheses... no
checking whether C compiler handles -Wlogical-op... yes
checking whether C compiler handles -Wmain... yes
checking whether C compiler handles -Wmaybe-uninitialized... yes
checking whether C compiler handles -Wmemset-elt-size... no
checking whether C compiler handles -Wmemset-transposed-args... no
checking whether C compiler handles -Wmisleading-indentation... no
checking whether C compiler handles -Wmissing-attributes... no
checking whether C compiler handles -Wmissing-braces... yes
checking whether C compiler handles -Wmissing-declarations... yes
checking whether C compiler handles -Wmissing-field-initializers... yes
checking whether C compiler handles -Wmissing-include-dirs... yes
checking whether C compiler handles -Wmissing-parameter-type... yes
checking whether C compiler handles -Wmissing-prototypes... yes
checking whether C compiler handles -Wmultichar... yes
checking whether C compiler handles -Wmultistatement-macros... no
checking whether C compiler handles -Wnarrowing... yes
checking whether C compiler handles -Wnested-externs... yes
checking whether C compiler handles -Wnonnull... yes
checking whether C compiler handles -Wnonnull-compare... no
checking whether C compiler handles -Wnull-dereference... no
checking whether C compiler handles -Wodr... no
checking whether C compiler handles -Wold-style-declaration... yes
checking whether C compiler handles -Wold-style-definition... yes
checking whether C compiler handles -Wopenmp-simd... no
checking whether C compiler handles -Woverflow... yes
checking whether C compiler handles -Woverride-init... yes
checking whether C compiler handles -Wpacked-bitfield-compat... yes
checking whether C compiler handles -Wpacked-not-aligned... no
checking whether C compiler handles -Wparentheses... yes
checking whether C compiler handles -Wpointer-arith... yes
checking whether C compiler handles -Wpointer-compare... no
checking whether C compiler handles -Wpointer-sign... yes
checking whether C compiler handles -Wpointer-to-int-cast... yes
checking whether C compiler handles -Wpragmas... yes
checking whether C compiler handles -Wpsabi... yes
checking whether C compiler handles -Wrestrict... no
checking whether C compiler handles -Wreturn-local-addr... yes
checking whether C compiler handles -Wreturn-type... yes
checking whether C compiler handles -Wscalar-storage-order... no
checking whether C compiler handles -Wsequence-point... yes
checking whether C compiler handles -Wshadow... yes
checking whether C compiler handles -Wshift-count-negative... no
checking whether C compiler handles -Wshift-count-overflow... no
checking whether C compiler handles -Wshift-negative-value... no
checking whether C compiler handles -Wsizeof-array-argument... no
checking whether C compiler handles -Wsizeof-pointer-div... no
checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
checking whether C compiler handles -Wstrict-aliasing... yes
checking whether C compiler handles -Wstrict-prototypes... yes
checking whether C compiler handles -Wstringop-truncation... no
checking whether C compiler handles -Wsuggest-attribute=cold... no
checking whether C compiler handles -Wsuggest-attribute=const... yes
checking whether C compiler handles -Wsuggest-attribute=format... yes
checking whether C compiler handles -Wsuggest-attribute=malloc... no
checking whether C compiler handles -Wsuggest-attribute=noreturn... yes
checking whether C compiler handles -Wsuggest-attribute=pure... yes
checking whether C compiler handles -Wsuggest-final-methods... no
checking whether C compiler handles -Wsuggest-final-types... no
checking whether C compiler handles -Wswitch... yes
checking whether C compiler handles -Wswitch-bool... no
checking whether C compiler handles -Wswitch-unreachable... no
checking whether C compiler handles -Wsync-nand... yes
checking whether C compiler handles -Wtautological-compare... no
checking whether C compiler handles -Wtrampolines... yes
checking whether C compiler handles -Wtrigraphs... yes
checking whether C compiler handles -Wtype-limits... yes
checking whether C compiler handles -Wuninitialized... yes
checking whether C compiler handles -Wunknown-pragmas... yes
checking whether C compiler handles -Wunused... yes
checking whether C compiler handles -Wunused-but-set-parameter... yes
checking whether C compiler handles -Wunused-but-set-variable... yes
checking whether C compiler handles -Wunused-function... yes
checking whether C compiler handles -Wunused-label... yes
checking whether C compiler handles -Wunused-local-typedefs... yes
checking whether C compiler handles -Wunused-parameter... yes
checking whether C compiler handles -Wunused-result... yes
checking whether C compiler handles -Wunused-value... yes
checking whether C compiler handles -Wunused-variable... yes
checking whether C compiler handles -Wvarargs... yes
checking whether C compiler handles -Wvariadic-macros... yes
checking whether C compiler handles -Wvector-operation-performance... yes
checking whether C compiler handles -Wvolatile-register-var... yes
checking whether C compiler handles -Wwrite-strings... yes
checking whether C compiler handles -Walloc-size-larger-than=9223372036854775807... no
checking whether C compiler handles -Warray-bounds=2... no
checking whether C compiler handles -Wformat-overflow=2... no
checking whether C compiler handles -Wformat-truncation=2... no
checking whether C compiler handles -Wimplicit-fallthrough=5... no
checking whether C compiler handles -Wnormalized=nfc... yes
checking whether C compiler handles -Wshift-overflow=2... no
checking whether C compiler handles -Wstringop-overflow=2... no
checking whether C compiler handles -Wunused-const-variable=2... no
checking whether C compiler handles -Wvla-larger-than=4031... no
checking whether C compiler handles -Wno-sign-compare... yes
checking whether C compiler handles -Wno-cast-function-type... no
checking whether C compiler handles -Wjump-misses-init... yes
checking whether C compiler handles -Wswitch-enum... yes
checking whether C compiler handles -Wno-format-nonliteral... yes
checking whether C compiler handles -Wno-format-truncation... no
checking whether C compiler handles -fstack-protector-strong... yes
checking whether C compiler handles -fexceptions... yes
checking whether C compiler handles -fasynchronous-unwind-tables... yes
checking whether C compiler handles -fipa-pure-const... yes
checking whether C compiler handles -Wno-suggest-attribute=pure... yes
checking whether C compiler handles -Wno-suggest-attribute=const... yes
checking whether C compiler handles -Werror... yes
checking whether C compiler handles -fPIE -DPIE -pie... yes
checking for how to force completely read-only GOT table... -Wl,-z -Wl,relro -Wl,-z -Wl,now
checking for how to avoid indirect lib deps... -Wl,--no-copy-dt-needed-entries
checking for how to stop undefined symbols at link time... -Wl,-z -Wl,defs
checking sys/acl.h usability... yes
checking sys/acl.h presence... yes
checking for sys/acl.h... yes
checking for aa_change_profile in -lapparmor... no
checking for pthread_mutexattr_init... yes
checking for pthread.h... (cached) yes
checking whether pthread_sigmask does anything... yes
checking for atomic ops implementation... gcc
checking for getxattr in -lattr... yes
checking sys/xattr.h usability... yes
checking sys/xattr.h presence... yes
checking for sys/xattr.h... yes
checking for audit_encode_nv_string in -laudit... yes
checking libaudit.h usability... yes
checking libaudit.h presence... yes
checking for libaudit.h... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for AVAHI... yes
checking for library containing tgetent... -lncurses
checking whether rl_completion_quote_character is declared... yes
checking for readline in -lreadline... yes
checking readline/readline.h usability... yes
checking readline/readline.h presence... yes
checking for readline/readline.h... yes
checking for rl_initialize in -lreadline... yes
checking for BASH_COMPLETION... no
checking for BLKID... yes
checking for capng_updatev in -lcap-ng... yes
checking cap-ng.h usability... yes
checking cap-ng.h presence... yes
checking for cap-ng.h... yes
checking for CURL... yes
checking for DBUS... yes
checking for dbus_watch_get_unix_fd... yes
checking for DBusBasicValue... yes
checking for DEVMAPPER... yes
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... -ldl
checking for whether to install firewalld libvirt zone... yes
checking for FUSE... yes
checking for GLUSTERFS... yes
checking for GNUTLS... yes
checking for HAL... no
checking for LIBISCSI... no
checking for NETCF... yes
checking for ncf_change_begin... yes
checking whether to compile with macvtap support... yes
checking whether MACVLAN_MODE_PASSTHRU is declared... yes
checking for LIBNL... yes
checking for LIBNL_ROUTE3... yes
checking for LIBPARTED... yes
checking for parted... /sbin/parted
checking libpcap pcap-config >= 1.0.0 ... yes
checking for LIBSSH... no
checking for LIBXML... yes
checking for struct _xmlURI.query_raw... yes
checking whether to compile with macvtap support... yes
checking whether MACVLAN_MODE_PASSTHRU is declared... (cached) yes
checking for NETCF... yes
checking for ncf_change_begin... (cached) yes
checking for gettext... yes
checking for libintl.h... (cached) yes
checking for xgettext... xgettext
checking for msgfmt... msgfmt
checking for msgmerge... msgmerge
checking msgfmt is GNU tool... yes
checking for numa_available in -lnuma... yes
checking numa.h usability... yes
checking numa.h presence... yes
checking for numa.h... yes
checking for numa_bitmask_isbitset in -lnuma... yes
checking for OPENWSMAN... no
checking for PCIACCESS... yes
checking for init script type... systemd
checking for pkcheck... /usr/bin/pkcheck
checking for pthread_mutexattr_init... (cached) yes
checking for pthread.h... (cached) yes
checking whether pthread_sigmask does anything... (cached) yes
checking for library containing tgetent... (cached) -lncurses
checking whether rl_completion_quote_character is declared... (cached) yes
checking for readline in -lreadline... (cached) yes
checking for readline/readline.h... (cached) yes
checking for rl_initialize in -lreadline... (cached) yes
checking for sanlock_init in -lsanlock_client... yes
checking sanlock.h usability... yes
checking sanlock.h presence... yes
checking for sanlock.h... yes
checking whether SANLK_INQ_WAIT is declared... yes
checking for sanlock_killpath in -lsanlock_client... yes
checking for sanlock_inq_lockspace in -lsanlock_client... yes
checking for sanlock_write_lockspace in -lsanlock_client... yes
checking for sanlock_strerror in -lsanlock_client... yes
checking for sasl_client_init in -lsasl2... yes
checking sasl/sasl.h usability... yes
checking sasl/sasl.h presence... yes
checking for sasl/sasl.h... yes
checking for fgetfilecon_raw in -lselinux... yes
checking selinux/selinux.h usability... yes
checking selinux/selinux.h presence... yes
checking for selinux/selinux.h... yes
checking for selinux setcon parameter type... const
checking for selinux selabel_open parameter type... const
checking SELinux mount point... /sys/fs/selinux
checking selinux/label.h usability... yes
checking selinux/label.h presence... yes
checking for selinux/label.h... yes
checking for SSH2... no
checking for UDEV... yes
checking for udev_monitor_set_receive_buffer_size... yes
checking whether to compile with virtual port support... yes
checking for WIRESHARK_DISSECTOR... no
checking for xdrmem_create in -lportablexdr... no
checking for library containing xdrmem_create... none required
checking for xdr_u_int64_t... no
checking where to find <rpc/rpc.h>... none
checking for qemu-kvm... no
checking for qemu... no
checking for kvm... no
checking for qemu-system-x86_64... no
checking for yajl_parse_complete in -lyajl... no
checking for yajl_tree_parse in -lyajl... yes
checking yajl/yajl_common.h usability... yes
checking yajl/yajl_common.h presence... yes
checking for yajl/yajl_common.h... yes
checking size of long... 8
checking ifaddrs.h usability... yes
checking ifaddrs.h presence... yes
checking for ifaddrs.h... yes
checking libtasn1.h usability... yes
checking libtasn1.h presence... yes
checking for libtasn1.h... yes
checking linux/magic.h usability... yes
checking linux/magic.h presence... yes
checking for linux/magic.h... yes
checking mntent.h usability... yes
checking mntent.h presence... yes
checking for mntent.h... yes
checking net/ethernet.h usability... yes
checking net/ethernet.h presence... yes
checking for net/ethernet.h... yes
checking netinet/tcp.h usability... yes
checking netinet/tcp.h presence... yes
checking for netinet/tcp.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/syscall.h usability... yes
checking sys/syscall.h presence... yes
checking for sys/syscall.h... yes
checking for sys/sysctl.h... (cached) yes
checking sys/ucred.h usability... no
checking sys/ucred.h presence... no
checking for sys/ucred.h... no
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking whether htole64 is declared... yes
checking for stat... yes
checking for stat64... yes
checking for __xstat... yes
checking for __xstat64... yes
checking for lstat... (cached) yes
checking for lstat64... yes
checking for __lxstat... yes
checking for __lxstat64... yes
checking for struct ifreq... yes
checking for struct sockpeercred... no
checking whether ETH_FLAG_TXVLAN is declared... yes
checking whether ETH_FLAG_NTUPLE is declared... yes
checking whether ETH_FLAG_RXHASH is declared... yes
checking whether ETH_FLAG_LRO is declared... yes
checking whether ETHTOOL_GGSO is declared... yes
checking whether ETHTOOL_GGRO is declared... yes
checking whether ETHTOOL_GFLAGS is declared... yes
checking whether ETHTOOL_GFEATURES is declared... yes
checking whether ETHTOOL_SCOALESCE is declared... yes
checking whether ETHTOOL_GCOALESCE is declared... yes
checking whether SEEK_HOLE is declared... yes
checking for gettext in -lintl... no
checking for rpcgen... /usr/bin/rpcgen
checking for xmllint... /usr/bin/xmllint
checking for xsltproc... /usr/bin/xsltproc
checking for augparse... /usr/bin/augparse
checking whether ln -s works... yes
checking for dmidecode... /sbin/dmidecode
checking for dnsmasq... /sbin/dnsmasq
checking for radvd... /sbin/radvd
checking for tc... /sbin/tc
checking for udevadm... /usr/bin/udevadm
checking for udevsettle... no
checking for modprobe... /sbin/modprobe
checking for rmmod... /sbin/rmmod
checking for mm-ctl... mm-ctl
checking for ovs-vsctl... ovs-vsctl
checking for scrub... /usr/bin/scrub
checking for addr2line... /usr/bin/addr2line
checking for ip... /sbin/ip
checking for iptables... /sbin/iptables
checking for ip6tables... /sbin/ip6tables
checking for ebtables... /sbin/ebtables
checking for qemu-bridge-helper... /usr/libexec/qemu-bridge-helper
checking for qemu-pr-helper... /usr/bin/qemu-pr-helper
checking for xen_vm_start in -lxenserver... no
checking for LIBXL... no
checking for libxl_cpupool_cpuadd_cpumap in -lxenlight... no
checking whether LIBXL_DOMAIN_TYPE_PVH is declared... no
checking for PARALLELS_SDK... no
checking for bhyve... no
checking for bhyvectl... no
checking for bhyveload... no
checking for dtrace... /usr/bin/dtrace
checking for numad... /usr/bin/numad
checking for init script type... systemd
checking for whether to install sysctl config... yes
checking nss.h usability... yes
checking nss.h presence... yes
checking for nss.h... yes
checking for struct gaih_addrtuple... yes
checking for ns_mtab... no
checking for nss_module_unregister_fn... no
checking linux/kvm.h usability... yes
checking linux/kvm.h presence... yes
checking for linux/kvm.h... yes
checking whether <linux/*.h> and <netinet/*.h> headers are compatible... yes
checking for linux/param.h... yes
checking for linux/sockios.h... yes
checking for linux/if_bridge.h... yes
checking for linux/if_tun.h... yes
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for selinux_virtual_domain_context_path... yes
checking for selinux_virtual_image_context_path... yes
checking for selinux_lxc_contexts_path... yes
checking for mntent.h... (cached) yes
checking for mount... /usr/bin/mount
checking for umount... /usr/bin/umount
checking for mkfs... /sbin/mkfs
checking for showmount... /sbin/showmount
checking for pvcreate... /sbin/pvcreate
checking for vgcreate... /sbin/vgcreate
checking for lvcreate... /sbin/lvcreate
checking for pvremove... /sbin/pvremove
checking for vgremove... /sbin/vgremove
checking for lvremove... /sbin/lvremove
checking for lvchange... /sbin/lvchange
checking for vgchange... /sbin/vgchange
checking for vgscan... /sbin/vgscan
checking for pvs... /sbin/pvs
checking for vgs... /sbin/vgs
checking for lvs... /sbin/lvs
checking for iscsiadm... /sbin/iscsiadm
checking rbd/librbd.h usability... yes
checking rbd/librbd.h presence... yes
checking for rbd/librbd.h... yes
checking for rbd_get_features... yes
checking for collie... no
checking for dog... no
checking for zfs... no
checking for zpool... no
checking for vstorage... no
checking for vstorage-mount... no
checking for umount... (cached) /usr/bin/umount
checking linux/btrfs.h usability... yes
checking linux/btrfs.h presence... yes
checking for linux/btrfs.h... yes
checking xfs/xfs.h usability... no
checking xfs/xfs.h presence... no
checking for xfs/xfs.h... no
checking linux/devlink.h usability... yes
checking linux/devlink.h presence... yes
checking for linux/devlink.h... yes
checking whether DEVLINK_CMD_ESWITCH_GET is declared... yes
checking whether VHOST_VSOCK_SET_GUEST_CID is declared... yes
checking for python3... /usr/bin/python3
checking for perl... /usr/bin/perl
checking Whether to build test suite by default... yes
checking whether GET_VLAN_VID_CMD is declared... yes
checking for struct ifreq.ifr_newname... yes
checking for struct ifreq.ifr_ifindex... yes
checking for struct ifreq.ifr_index... no
checking for struct ifreq.ifr_hwaddr... yes
checking whether BRDGSFD is declared... no
checking whether BRDGADD is declared... no
checking whether BRDGDEL is declared... no
checking whether cpuset_getaffinity is declared... no
checking for struct if_data.ifi_oqdrops... no
checking whether clock_serv_t is declared... no
checking whether host_get_clock_service is declared... no
checking whether clock_get_time is declared... no
checking whether this build is done by a static analysis tool... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating run
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating include/libvirt/Makefile
config.status: creating docs/Makefile
config.status: creating gnulib/lib/Makefile
config.status: creating gnulib/tests/Makefile
config.status: creating .color_coded
config.status: creating .ycm_extra_conf.py
config.status: creating libvirt.pc
config.status: creating libvirt-qemu.pc
config.status: creating libvirt-lxc.pc
config.status: creating libvirt-admin.pc
config.status: creating src/libvirt.pc
config.status: creating src/libvirt-qemu.pc
config.status: creating src/libvirt-lxc.pc
config.status: creating libvirt.spec
config.status: creating mingw-libvirt.spec
config.status: creating po/Makefile
config.status: creating include/libvirt/libvirt-common.h
config.status: creating examples/Makefile
config.status: creating tests/Makefile
config.status: creating tools/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure:
configure: Configuration summary
configure: =====================
configure:
configure: Drivers
configure:
configure: QEMU: yes
configure: OpenVZ: yes
configure: VMware: yes
configure: VBox: yes
configure: XenAPI: no
configure: libxl: no
configure: LXC: yes
configure: PHYP: no
configure: ESX: yes
configure: Hyper-V: no
configure: vz: no
configure: Bhyve: no
configure: Test: yes
configure: Remote: yes
configure: Network: yes
configure: Libvirtd: yes
configure: Interface: yes
configure:
configure: Storage Drivers
configure:
configure: Dir: yes
configure: FS: yes
configure: NetFS: yes
configure: LVM: yes
configure: iSCSI: yes
configure: iscsi-direct: no
configure: SCSI: yes
configure: mpath: yes
configure: Disk: yes
configure: RBD: yes
configure: Sheepdog: no
configure: Gluster: yes
configure: ZFS: no
configure: Virtuozzo storage: no
configure:
configure: Security Drivers
configure:
configure: SELinux: yes
configure: AppArmor: no
configure:
configure: Driver Loadable Modules
configure:
configure: driver_modules: yes (CFLAGS='' LIBS='-ldl')
configure:
configure: Libraries
configure:
configure: acl: yes (CFLAGS='' LIBS='-lacl')
configure: apparmor: no
configure: attr: yes (CFLAGS='' LIBS='-lattr')
configure: audit: yes (CFLAGS='' LIBS='-laudit')
configure: avahi: yes (CFLAGS='-D_REENTRANT ' LIBS='-lavahi-common -lavahi-client ')
configure: bash_completion: no
configure: blkid: yes (CFLAGS='-I/usr/include/blkid -I/usr/include/uuid ' LIBS='-lblkid ')
configure: capng: yes (CFLAGS='' LIBS='-lcap-ng')
configure: curl: yes (CFLAGS='-DCURL_DISABLE_TYPECHECK ' LIBS='-lcurl ')
configure: dbus: yes (CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include ' LIBS='-ldbus-1 ')
configure: dlopen: yes (CFLAGS='' LIBS='-ldl')
configure: firewalld: yes (CFLAGS='' LIBS='')
configure: firewalld-zone: yes
configure: fuse: yes (CFLAGS='-D_FILE_OFFSET_BITS=64 -I/usr/include/fuse ' LIBS='-pthread -lfuse ')
configure: glusterfs: yes (CFLAGS='-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64 -DUSE_POSIX_ACLS=1 -I/usr/include/glusterfs -I/usr/include/uuid ' LIBS='-lacl -lgfapi -lglusterfs -lgfrpc -lgfxdr -luuid ')
configure: gnutls: yes (CFLAGS='-I/usr/include/p11-kit-1 ' LIBS='-lgnutls ')
configure: hal: no
configure: libiscsi: no
configure: libnl: yes (CFLAGS='-I/usr/include/libnl3 -I/usr/include/libnl3 ' LIBS='-lnl-3 -lnl-route-3 -lnl-3 ')
configure: libpcap: yes (CFLAGS='' LIBS='-lpcap')
configure: libssh: no
configure: libxl: no
configure: libxml: yes (CFLAGS='-I/usr/include/libxml2 ' LIBS='-lxml2 ')
configure: macvtap: yes (CFLAGS='' LIBS='')
configure: netcf: yes (CFLAGS=' ' LIBS='-lnetcf ')
configure: NLS: yes
configure: nss: yes
configure: numactl: yes (CFLAGS='' LIBS='-lnuma')
configure: openwsman: no
configure: pciaccess: yes (CFLAGS=' ' LIBS='-lpciaccess ')
configure: pm_utils: no
configure: polkit: yes
configure: rbd: yes (CFLAGS='' LIBS='-lrbd -lrados')
configure: readline: yes (CFLAGS='-D_FUNCTION_DEF ' LIBS='-lreadline')
configure: sanlock: yes (CFLAGS='' LIBS='-lsanlock_client')
configure: sasl: yes (CFLAGS='' LIBS='-lsasl2')
configure: selinux: yes (CFLAGS='' LIBS='-lselinux')
configure: ssh2: no
configure: udev: yes (CFLAGS=' ' LIBS='-ludev ')
configure: virtualport: yes (CFLAGS='' LIBS='')
configure: xdr: yes (CFLAGS='' LIBS='')
configure: xenapi: no
configure: yajl: yes (CFLAGS='' LIBS='-lyajl')
configure:
configure: Windows
configure:
configure: Cygwin: no
configure: MinGW: no
configure: MSVC: no
configure: windres: no
configure:
configure: Test suite
configure:
configure: Coverage: no
configure: Alloc OOM: no
configure:
configure: Miscellaneous
configure:
configure: Debug: yes
configure: Use -Werror: yes
configure: Warning Flags: -fno-common -W -Waddress -Waggressive-loop-optimizations -Wall -Wattributes -Wbad-function-cast -Wbuiltin-macro-redefined -Wcast-align -Wchar-subscripts -Wclobbered -Wcomment -Wcomments -Wcoverage-mismatch -Wcpp -Wdeprecated-declarations -Wdiv-by-zero -Wdouble-promotion -Wempty-body -Wendif-labels -Wextra -Wformat-contains-nul -Wformat-extra-args -Wformat-security -Wformat-y2k -Wformat-zero-length -Wfree-nonheap-object -Wignored-qualifiers -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Winit-self -Winline -Wint-to-pointer-cast -Winvalid-memory-model -Winvalid-pch -Wlogical-op -Wmain -Wmaybe-uninitialized -Wmissing-braces -Wmissing-declarations -Wmissing-field-initializers -Wmissing-include-dirs -Wmissing-parameter-type -Wmissing-prototypes -Wmultichar -Wnarrowing -Wnested-externs -Wnonnull -Wold-style-declaration -Wold-style-definition -Woverflow -Woverride-init -Wpacked-bitfield-compat -Wparentheses -Wpointer-arith -Wpointer-sign -Wpointer-to-int-cast -Wpragmas -Wpsabi -Wreturn-local-addr -Wreturn-type -Wsequence-point -Wshadow -Wsizeof-pointer-memaccess -Wstrict-aliasing -Wstrict-prototypes -Wsuggest-attribute=const -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wswitch -Wsync-nand -Wtrampolines -Wtrigraphs -Wtype-limits -Wuninitialized -Wunknown-pragmas -Wunused -Wunused-but-set-parameter -Wunused-but-set-variable -Wunused-function -Wunused-label -Wunused-local-typedefs -Wunused-parameter -Wunused-result -Wunused-value -Wunused-variable -Wvarargs -Wvariadic-macros -Wvector-operation-performance -Wvolatile-register-var -Wwrite-strings -Wnormalized=nfc -Wno-sign-compare -Wjump-misses-init -Wswitch-enum -Wno-format-nonliteral -fstack-protector-strong -fexceptions -fasynchronous-unwind-tables -fipa-pure-const -Wno-suggest-attribute=pure -Wno-suggest-attribute=const -Werror
configure: DTrace: yes
configure: numad: yes
configure: Init script: systemd
configure: Char device locks: /var/lock
configure: Default Editor: vi
configure: Loader/NVRAM:
configure: virt-login-shell: yes
configure: virt-host-validate: yes
configure: TLS priority: NORMAL
configure:
configure: Developer Tools
configure:
configure: wireshark_dissector: no
configure:
configure: Privileges
configure:
configure: QEMU: root:root
configure:
Now type 'make' to compile libvirt.
GEN spacing-check
Invalid character after comma:
src/qemu/qemu_domain.c:10408: virCommandAddArgList(cmd, "/proc/device-tree/","-path", path_pattern,
maint.mk: incorrect formatting
make: *** [spacing-check] Error 1
real 11m22.817s
user 8m42.614s
sys 3m41.364s
=== OUTPUT END ===
Test command exited with code: 2
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
On 3/4/19 6:27 AM, no-reply@patchew.org wrote:
Hi,
This series was run against 'syntax-check' test by patchew.org, which failed, please find the details below:
Subject: [libvirt] [PATCH v2 0/3] PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough Type: series Message-id: 20190303132314.27814-1-danielhb413@gmail.com
=== TEST SCRIPT BEGIN === #!/bin/bash # Testing script will be invoked under the git checkout with # HEAD pointing to a commit that has the patches applied on top of "base" # branch time bash -c './autogen.sh && make syntax-check' === TEST SCRIPT END ===
Updating bcb55ab053bc79561b55d0394490f4b64e0f2d01 From https://github.com/patchew-project/libvirt - [tag update] patchew/20190301162652.32533-1-jferlan@redhat.com -> patchew/20190301162652.32533-1-jferlan@redhat.com * [new tag] patchew/20190303132314.27814-1-danielhb413@gmail.com -> patchew/20190303132314.27814-1-danielhb413@gmail.com Switched to a new branch 'test' 83b62e4 PPC64 support for NVIDIA V100 GPU with NVLink2 passthrough de8b028 qemu_domain: NVLink2 device tree functions for PPC64 b6c816a qemu_domain: simplify non-VFIO memLockLimit calc for PPC64
=== OUTPUT BEGIN === Updating submodules... Submodule 'gnulib' (https://git.savannah.gnu.org/git/gnulib.git/) registered for path '.gnulib' Submodule 'keycodemapdb' (https://gitlab.com/keycodemap/keycodemapdb.git) registered for path 'src/keycodemapdb' Cloning into '.gnulib'... remote: Counting objects: 88446 remote: Counting objects: 147646 remote: Counting objects: 201548, done. remote: Compressing objects: 0% (1/26672) remote: Compressing objects: 1% (267/26672) remote: Compressing objects: 2% (534/26672) remote: Compressing objects: 3% (801/26672) remote: Compressing objects: 4% (1067/26672) remote: Compressing objects: 5% (1334/26672) remote: Compressing objects: 6% (1601/26672) remote: Compressing objects: 7% (1868/26672) remote: Compressing objects: 8% (2134/26672) remote: Compressing objects: 9% (2401/26672) remote: Compressing objects: 10% (2668/26672) remote: Compressing objects: 11% (2934/26672) remote: Compressing objects: 12% (3201/26672) remote: Compressing objects: 13% (3468/26672) remote: Compressing objects: 14% (3735/26672) remote: Compressing objects: 15% (4001/26672) remote: Compressing objects: 16% (4268/26672) remote: Compressing objects: 17% (4535/26672) remote: Compressing objects: 18% (4801/26672) remote: Compressing objects: 19% (5068/26672) remote: Compressing objects: 20% (5335/26672) remote: Compressing objects: 21% (5602/26672) remote: Compressing objects: 22% (5868/26672) remote: Compressing objects: 23% (6135/26672) remote: Compressing objects: 24% (6402/26672) remote: Compressing objects: 25% (6668/26672) remote: Compressing objects: 26% (6935/26672) remote: Compressing objects: 27% (7202/26672) remote: Compressing objects: 28% (7469/26672) remote: Compressing objects: 29% (7735/26672) remote: Compressing objects: 30% (8002/26672) remote: Compressing objects: 31% (8269/26672) remote: Compressing objects: 32% (8536/26672) remote: Compressing objects: 33% (8802/26672) remote: Compressing objects: 34% (9069/26672) remote: Compressing objects: 35% (9336/26672) remote: Compressing objects: 36% (9602/26672) remote: Compressing objects: 37% (9869/26672) remote: Compressing objects: 38% (10136/26672) remote: Compressing objects: 39% (10403/26672) remote: Compressing objects: 40% (10669/26672) remote: Compressing objects: 41% (10936/26672) remote: Compressing objects: 42% (11203/26672) remote: Compressing objects: 43% (11469/26672) remote: Compressing objects: 44% (11736/26672) remote: Compressing objects: 45% (12003/26672) remote: Compressing objects: 46% (12270/26672) remote: Compressing objects: 47% (12536/26672) remote: Compressing objects: 48% (12803/26672) remote: Compressing objects: 49% (13070/26672) remote: Compressing objects: 50% (13336/26672) remote: Compressing objects: 51% (13603/26672) remote: Compressing objects: 52% (13870/26672) remote: Compressing objects: 53% (14137/26672) remote: Compressing objects: 54% (14403/26672) remote: Compressing objects: 55% (14670/26672) remote: Compressing objects: 56% (14937/26672) remote: Compressing objects: 57% (15204/26672) remote: Compressing objects: 58% (15470/26672) remote: Compressing objects: 59% (15737/26672) remote: Compressing objects: 60% (16004/26672) remote: Compressing objects: 61% (16270/26672) remote: Compressing objects: 62% (16537/26672) remote: Compressing objects: 63% (16804/26672) remote: Compressing objects: 64% (17071/26672) remote: Compressing objects: 65% (17337/26672) remote: Compressing objects: 66% (17604/26672) remote: Compressing objects: 67% (17871/26672) remote: Compressing objects: 68% (18137/26672) remote: Compressing objects: 69% (18404/26672) remote: Compressing objects: 70% (18671/26672) remote: Compressing objects: 71% (18938/26672) remote: Compressing objects: 72% (19204/26672) remote: Compressing objects: 73% (19471/26672) remote: Compressing objects: 74% (19738/26672) remote: Compressing objects: 75% (20004/26672) remote: Compressing objects: 76% (20271/26672) remote: Compressing objects: 77% (20538/26672) remote: Compressing objects: 78% (20805/26672) remote: Compressing objects: 79% (21071/26672) remote: Compressing objects: 80% (21338/26672) remote: Compressing objects: 81% (21605/26672) remote: Compressing objects: 82% (21872/26672) remote: Compressing objects: 83% (22138/26672) remote: Compressing objects: 84% (22405/26672) remote: Compressing objects: 85% (22672/26672) remote: Compressing objects: 86% (22938/26672) remote: Compressing objects: 87% (23205/26672) remote: Compressing objects: 88% (23472/26672) remote: Compressing objects: 89% (23739/26672) remote: Compressing objects: 90% (24005/26672) remote: Compressing objects: 91% (24272/26672) remote: Compressing objects: 92% (24539/26672) remote: Compressing objects: 93% (24805/26672) remote: Compressing objects: 94% (25072/26672) remote: Compressing objects: 95% (25339/26672) remote: Compressing objects: 96% (25606/26672) remote: Compressing objects: 97% (25872/26672) remote: Compressing objects: 98% (26139/26672) remote: Compressing objects: 99% (26406/26672) remote: Compressing objects: 100% (26672/26672) remote: Compressing objects: 100% (26672/26672), done. Receiving objects: 0% (1/201548) Receiving objects: 1% (2016/201548) Receiving objects: 2% (4031/201548) Receiving objects: 3% (6047/201548) Receiving objects: 4% (8062/201548) Receiving objects: 5% (10078/201548) Receiving objects: 6% (12093/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 7% (14109/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 8% (16124/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 9% (18140/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 10% (20155/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 11% (22171/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 11% (23124/201548), 2.81 MiB | 5.61 MiB/s Receiving objects: 12% (24186/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 13% (26202/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 14% (28217/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 15% (30233/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 16% (32248/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 17% (34264/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 18% (36279/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 19% (38295/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 20% (40310/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 21% (42326/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 22% (44341/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 23% (46357/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 24% (48372/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 25% (50387/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 26% (52403/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 27% (54418/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 28% (56434/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 29% (58449/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 30% (60465/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 31% (62480/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 32% (64496/201548), 8.61 MiB | 8.59 MiB/s Receiving objects: 33% (66511/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 34% (68527/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 35% (70542/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 36% (72558/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 37% (74573/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 38% (76589/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 39% (78604/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 40% (80620/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 41% (82635/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 41% (84422/201548), 15.34 MiB | 10.21 MiB/s Receiving objects: 42% (84651/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 43% (86666/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 44% (88682/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 45% (90697/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 46% (92713/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 47% (94728/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 48% (96744/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 49% (98759/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 50% (100774/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 51% (102790/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 52% (104805/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 53% (106821/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 54% (108836/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 55% (110852/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 56% (112867/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 57% (114883/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 58% (116898/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 59% (118914/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 60% (120929/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 61% (122945/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 62% (124960/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 63% (126976/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 64% (128991/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 65% (131007/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 66% (133022/201548), 20.00 MiB | 9.98 MiB/s Receiving objects: 67% (135038/201548), 27.58 MiB | 11.01 MiB/s Receiving objects: 68% (137053/201548), 27.58 MiB | 11.01 MiB/s Receiving objects: 69% (139069/201548), 27.58 MiB | 11.01 MiB/s Receiving objects: 69% (139769/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 70% (141084/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 71% (143100/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 72% (145115/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 73% (147131/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 74% (149146/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 75% (151161/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 76% (153177/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 77% (155192/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 78% (157208/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 79% (159223/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 80% (161239/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 81% (163254/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 82% (165270/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 83% (167285/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 84% (169301/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 85% (171316/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 86% (173332/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 87% (175347/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 88% (177363/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 89% (179378/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 90% (181394/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 91% (183409/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 92% (185425/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 93% (187440/201548), 32.01 MiB | 10.65 MiB/s Receiving objects: 94% (189456/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 95% (191471/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 96% (193487/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 97% (195502/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 98% (197518/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 99% (199533/201548), 38.75 MiB | 11.05 MiB/s remote: Total 201548 (delta 174810), reused 201548 (delta 174810) Receiving objects: 100% (201548/201548), 38.75 MiB | 11.05 MiB/s Receiving objects: 100% (201548/201548), 39.90 MiB | 11.05 MiB/s, done. Resolving deltas: 0% (0/174810) Resolving deltas: 1% (1852/174810) Resolving deltas: 2% (3837/174810) Resolving deltas: 3% (5260/174810) Resolving deltas: 4% (7003/174810) Resolving deltas: 5% (8751/174810) Resolving deltas: 6% (10553/174810) Resolving deltas: 7% (12698/174810) Resolving deltas: 8% (13991/174810) Resolving deltas: 9% (15804/174810) Resolving deltas: 10% (18060/174810) Resolving deltas: 11% (19629/174810) Resolving deltas: 12% (21072/174810) Resolving deltas: 13% (22989/174810) Resolving deltas: 14% (24659/174810) Resolving deltas: 15% (27495/174810) Resolving deltas: 16% (28183/174810) Resolving deltas: 17% (29839/174810) Resolving deltas: 18% (31704/174810) Resolving deltas: 19% (33226/174810) Resolving deltas: 20% (35186/174810) Resolving deltas: 21% (36898/174810) Resolving deltas: 22% (38528/174810) Resolving deltas: 23% (40276/174810) Resolving deltas: 24% (42298/174810) Resolving deltas: 25% (44871/174810) Resolving deltas: 26% (45697/174810) Resolving deltas: 27% (47247/174810) Resolving deltas: 28% (48973/174810) Resolving deltas: 29% (50708/174810) Resolving deltas: 30% (52809/174810) Resolving deltas: 31% (54375/174810) Resolving deltas: 32% (56273/174810) Resolving deltas: 33% (58167/174810) Resolving deltas: 34% (59549/174810) Resolving deltas: 35% (61278/174810) Resolving deltas: 36% (63065/174810) Resolving deltas: 37% (64727/174810) Resolving deltas: 38% (66616/174810) Resolving deltas: 39% (68188/174810) Resolving deltas: 40% (69964/174810) Resolving deltas: 41% (71689/174810) Resolving deltas: 41% (72090/174810) Resolving deltas: 42% (73428/174810) Resolving deltas: 43% (75197/174810) Resolving deltas: 44% (76919/174810) Resolving deltas: 45% (78672/174810) Resolving deltas: 46% (80426/174810) Resolving deltas: 47% (82399/174810) Resolving deltas: 48% (83929/174810) Resolving deltas: 49% (85695/174810) Resolving deltas: 50% (87408/174810) Resolving deltas: 51% (89206/174810) Resolving deltas: 52% (90912/174810) Resolving deltas: 53% (92680/174810) Resolving deltas: 54% (94478/174810) Resolving deltas: 55% (96152/174810) Resolving deltas: 56% (97940/174810) Resolving deltas: 57% (99645/174810) Resolving deltas: 58% (101419/174810) Resolving deltas: 59% (103155/174810) Resolving deltas: 60% (104934/174810) Resolving deltas: 60% (105333/174810) Resolving deltas: 61% (106771/174810) Resolving deltas: 62% (108405/174810) Resolving deltas: 63% (110191/174810) Resolving deltas: 64% (111961/174810) Resolving deltas: 65% (113627/174810) Resolving deltas: 66% (115421/174810) Resolving deltas: 67% (117132/174810) Resolving deltas: 68% (118913/174810) Resolving deltas: 69% (120644/174810) Resolving deltas: 70% (122385/174810) Resolving deltas: 71% (124154/174810) Resolving deltas: 72% (125866/174810) Resolving deltas: 73% (127613/174810) Resolving deltas: 74% (129360/174810) Resolving deltas: 75% (131132/174810) Resolving deltas: 76% (132868/174810) Resolving deltas: 77% (134663/174810) Resolving deltas: 78% (136352/174810) Resolving deltas: 79% (138110/174810) Resolving deltas: 80% (139898/174810) Resolving deltas: 81% (141632/174810) Resolving deltas: 82% (143364/174810) Resolving deltas: 83% (145161/174810) Resolving deltas: 84% (146871/174810) Resolving deltas: 85% (148598/174810) Resolving deltas: 86% (150382/174810) Resolving deltas: 87% (152092/174810) Resolving deltas: 87% (153507/174810) Resolving deltas: 88% (155552/174810) Resolving deltas: 89% (155618/174810) Resolving deltas: 90% (157408/174810) Resolving deltas: 91% (160056/174810) Resolving deltas: 92% (161053/174810) Resolving deltas: 93% (162879/174810) Resolving deltas: 94% (164589/174810) Resolving deltas: 95% (166312/174810) Resolving deltas: 96% (167834/174810) Resolving deltas: 98% (171429/174810) Resolving deltas: 100% (174810/174810) Resolving deltas: 100% (174810/174810), done. Submodule path '.gnulib': checked out '8089c00979a5b089cff592c6b91420e595657167' Cloning into 'src/keycodemapdb'... remote: Enumerating objects: 297, done. remote: Counting objects: 0% (1/297) remote: Counting objects: 1% (3/297) remote: Counting objects: 2% (6/297) remote: Counting objects: 3% (9/297) remote: Counting objects: 4% (12/297) remote: Counting objects: 5% (15/297) remote: Counting objects: 6% (18/297) remote: Counting objects: 7% (21/297) remote: Counting objects: 8% (24/297) remote: Counting objects: 9% (27/297) remote: Counting objects: 10% (30/297) remote: Counting objects: 11% (33/297) remote: Counting objects: 12% (36/297) remote: Counting objects: 13% (39/297) remote: Counting objects: 14% (42/297) remote: Counting objects: 15% (45/297) remote: Counting objects: 16% (48/297) remote: Counting objects: 17% (51/297) remote: Counting objects: 18% (54/297) remote: Counting objects: 19% (57/297) remote: Counting objects: 20% (60/297) remote: Counting objects: 21% (63/297) remote: Counting objects: 22% (66/297) remote: Counting objects: 23% (69/297) remote: Counting objects: 24% (72/297) remote: Counting objects: 25% (75/297) remote: Counting objects: 26% (78/297) remote: Counting objects: 27% (81/297) remote: Counting objects: 28% (84/297) remote: Counting objects: 29% (87/297) remote: Counting objects: 30% (90/297) remote: Counting objects: 31% (93/297) remote: Counting objects: 32% (96/297) remote: Counting objects: 33% (99/297) remote: Counting objects: 34% (101/297) remote: Counting objects: 35% (104/297) remote: Counting objects: 36% (107/297) remote: Counting objects: 37% (110/297) remote: Counting objects: 38% (113/297) remote: Counting objects: 39% (116/297) remote: Counting objects: 40% (119/297) remote: Counting objects: 41% (122/297) remote: Counting objects: 42% (125/297) remote: Counting objects: 43% (128/297) remote: Counting objects: 44% (131/297) remote: Counting objects: 45% (134/297) remote: Counting objects: 46% (137/297) remote: Counting objects: 47% (140/297) remote: Counting objects: 48% (143/297) remote: Counting objects: 49% (146/297) remote: Counting objects: 50% (149/297) remote: Counting objects: 51% (152/297) remote: Counting objects: 52% (155/297) remote: Counting objects: 53% (158/297) remote: Counting objects: 54% (161/297) remote: Counting objects: 55% (164/297) remote: Counting objects: 56% (167/297) remote: Counting objects: 57% (170/297) remote: Counting objects: 58% (173/297) remote: Counting objects: 59% (176/297) remote: Counting objects: 60% (179/297) remote: Counting objects: 61% (182/297) remote: Counting objects: 62% (185/297) remote: Counting objects: 63% (188/297) remote: Counting objects: 64% (191/297) remote: Counting objects: 65% (194/297) remote: Counting objects: 66% (197/297) remote: Counting objects: 67% (199/297) remote: Counting objects: 68% (202/297) remote: Counting objects: 69% (205/297) remote: Counting objects: 70% (208/297) remote: Counting objects: 71% (211/297) remote: Counting objects: 72% (214/297) remote: Counting objects: 73% (217/297) remote: Counting objects: 74% (220/297) remote: Counting objects: 75% (223/297) remote: Counting objects: 76% (226/297) remote: Counting objects: 77% (229/297) remote: Counting objects: 78% (232/297) remote: Counting objects: 79% (235/297) remote: Counting objects: 80% (238/297) remote: Counting objects: 81% (241/297) remote: Counting objects: 82% (244/297) remote: Counting objects: 83% (247/297) remote: Counting objects: 84% (250/297) remote: Counting objects: 85% (253/297) remote: Counting objects: 86% (256/297) remote: Counting objects: 87% (259/297) remote: Counting objects: 88% (262/297) remote: Counting objects: 89% (265/297) remote: Counting objects: 90% (268/297) remote: Counting objects: 91% (271/297) remote: Counting objects: 92% (274/297) remote: Counting objects: 93% (277/297) remote: Counting objects: 94% (280/297) remote: Counting objects: 95% (283/297) remote: Counting objects: 96% (286/297) remote: Counting objects: 97% (289/297) remote: Counting objects: 98% (292/297) remote: Counting objects: 99% (295/297) remote: Counting objects: 100% (297/297) remote: Counting objects: 100% (297/297), done. remote: Compressing objects: 0% (1/112) remote: Compressing objects: 1% (2/112) remote: Compressing objects: 2% (3/112) remote: Compressing objects: 3% (4/112) remote: Compressing objects: 4% (5/112) remote: Compressing objects: 5% (6/112) remote: Compressing objects: 6% (7/112) remote: Compressing objects: 7% (8/112) remote: Compressing objects: 8% (9/112) remote: Compressing objects: 9% (11/112) remote: Compressing objects: 10% (12/112) remote: Compressing objects: 11% (13/112) remote: Compressing objects: 12% (14/112) remote: Compressing objects: 13% (15/112) remote: Compressing objects: 14% (16/112) remote: Compressing objects: 15% (17/112) remote: Compressing objects: 16% (18/112) remote: Compressing objects: 17% (20/112) remote: Compressing objects: 18% (21/112) remote: Compressing objects: 19% (22/112) remote: Compressing objects: 20% (23/112) remote: Compressing objects: 21% (24/112) remote: Compressing objects: 22% (25/112) remote: Compressing objects: 23% (26/112) remote: Compressing objects: 24% (27/112) remote: Compressing objects: 25% (28/112) remote: Compressing objects: 26% (30/112) remote: Compressing objects: 27% (31/112) remote: Compressing objects: 28% (32/112) remote: Compressing objects: 29% (33/112) remote: Compressing objects: 30% (34/112) remote: Compressing objects: 31% (35/112) remote: Compressing objects: 32% (36/112) remote: Compressing objects: 33% (37/112) remote: Compressing objects: 34% (39/112) remote: Compressing objects: 35% (40/112) remote: Compressing objects: 36% (41/112) remote: Compressing objects: 37% (42/112) remote: Compressing objects: 38% (43/112) remote: Compressing objects: 39% (44/112) remote: Compressing objects: 40% (45/112) remote: Compressing objects: 41% (46/112) remote: Compressing objects: 42% (48/112) remote: Compressing objects: 43% (49/112) remote: Compressing objects: 44% (50/112) remote: Compressing objects: 45% (51/112) remote: Compressing objects: 46% (52/112) remote: Compressing objects: 47% (53/112) remote: Compressing objects: 48% (54/112) remote: Compressing objects: 49% (55/112) remote: Compressing objects: 50% (56/112) remote: Compressing objects: 51% (58/112) remote: Compressing objects: 52% (59/112) remote: Compressing objects: 53% (60/112) remote: Compressing objects: 54% (61/112) remote: Compressing objects: 55% (62/112) remote: Compressing objects: 56% (63/112) remote: Compressing objects: 57% (64/112) remote: Compressing objects: 58% (65/112) remote: Compressing objects: 59% (67/112) remote: Compressing objects: 60% (68/112) remote: Compressing objects: 61% (69/112) remote: Compressing objects: 62% (70/112) remote: Compressing objects: 63% (71/112) remote: Compressing objects: 64% (72/112) remote: Compressing objects: 65% (73/112) remote: Compressing objects: 66% (74/112) remote: Compressing objects: 67% (76/112) remote: Compressing objects: 68% (77/112) remote: Compressing objects: 69% (78/112) remote: Compressing objects: 70% (79/112) remote: Compressing objects: 71% (80/112) remote: Compressing objects: 72% (81/112) remote: Compressing objects: 73% (82/112) remote: Compressing objects: 74% (83/112) remote: Compressing objects: 75% (84/112) remote: Compressing objects: 76% (86/112) remote: Compressing objects: 77% (87/112) remote: Compressing objects: 78% (88/112) remote: Compressing objects: 79% (89/112) remote: Compressing objects: 80% (90/112) remote: Compressing objects: 81% (91/112) remote: Compressing objects: 82% (92/112) remote: Compressing objects: 83% (93/112) remote: Compressing objects: 84% (95/112) remote: Compressing objects: 85% (96/112) remote: Compressing objects: 86% (97/112) remote: Compressing objects: 87% (98/112) remote: Compressing objects: 88% (99/112) remote: Compressing objects: 89% (100/112) remote: Compressing objects: 90% (101/112) remote: Compressing objects: 91% (102/112) remote: Compressing objects: 92% (104/112) remote: Compressing objects: 93% (105/112) remote: Compressing objects: 94% (106/112) remote: Compressing objects: 95% (107/112) remote: Compressing objects: 96% (108/112) remote: Compressing objects: 97% (109/112) remote: Compressing objects: 98% (110/112) remote: Compressing objects: 99% (111/112) remote: Compressing objects: 100% (112/112) remote: Compressing objects: 100% (112/112), done. Receiving objects: 0% (1/297) Receiving objects: 1% (3/297) Receiving objects: 2% (6/297) Receiving objects: 3% (9/297) Receiving objects: 4% (12/297) Receiving objects: 5% (15/297) Receiving objects: 6% (18/297) Receiving objects: 7% (21/297) Receiving objects: 8% (24/297) Receiving objects: 9% (27/297) Receiving objects: 10% (30/297) Receiving objects: 11% (33/297) Receiving objects: 12% (36/297) Receiving objects: 13% (39/297) Receiving objects: 14% (42/297) Receiving objects: 15% (45/297) Receiving objects: 16% (48/297) Receiving objects: 17% (51/297) Receiving objects: 18% (54/297) Receiving objects: 19% (57/297) Receiving objects: 20% (60/297) Receiving objects: 21% (63/297) Receiving objects: 22% (66/297) Receiving objects: 23% (69/297) Receiving objects: 24% (72/297) Receiving objects: 25% (75/297) Receiving objects: 26% (78/297) Receiving objects: 27% (81/297) Receiving objects: 28% (84/297) Receiving objects: 29% (87/297) Receiving objects: 30% (90/297) Receiving objects: 31% (93/297) Receiving objects: 32% (96/297) Receiving objects: 33% (99/297) Receiving objects: 34% (101/297) Receiving objects: 35% (104/297) Receiving objects: 36% (107/297) Receiving objects: 37% (110/297) Receiving objects: 38% (113/297) Receiving objects: 39% (116/297) Receiving objects: 40% (119/297) Receiving objects: 41% (122/297) Receiving objects: 42% (125/297) Receiving objects: 43% (128/297) Receiving objects: 44% (131/297) Receiving objects: 45% (134/297) remote: Total 297 (delta 146), reused 280 (delta 138) Receiving objects: 46% (137/297) Receiving objects: 47% (140/297) Receiving objects: 48% (143/297) Receiving objects: 49% (146/297) Receiving objects: 50% (149/297) Receiving objects: 51% (152/297) Receiving objects: 52% (155/297) Receiving objects: 53% (158/297) Receiving objects: 54% (161/297) Receiving objects: 55% (164/297) Receiving objects: 56% (167/297) Receiving objects: 57% (170/297) Receiving objects: 58% (173/297) Receiving objects: 59% (176/297) Receiving objects: 60% (179/297) Receiving objects: 61% (182/297) Receiving objects: 62% (185/297) Receiving objects: 63% (188/297) Receiving objects: 64% (191/297) Receiving objects: 65% (194/297) Receiving objects: 66% (197/297) Receiving objects: 67% (199/297) Receiving objects: 68% (202/297) Receiving objects: 69% (205/297) Receiving objects: 70% (208/297) Receiving objects: 71% (211/297) Receiving objects: 72% (214/297) Receiving objects: 73% (217/297) Receiving objects: 74% (220/297) Receiving objects: 75% (223/297) Receiving objects: 76% (226/297) Receiving objects: 77% (229/297) Receiving objects: 78% (232/297) Receiving objects: 79% (235/297) Receiving objects: 80% (238/297) Receiving objects: 81% (241/297) Receiving objects: 82% (244/297) Receiving objects: 83% (247/297) Receiving objects: 84% (250/297) Receiving objects: 85% (253/297) Receiving objects: 86% (256/297) Receiving objects: 87% (259/297) Receiving objects: 88% (262/297) Receiving objects: 89% (265/297) Receiving objects: 90% (268/297) Receiving objects: 91% (271/297) Receiving objects: 92% (274/297) Receiving objects: 93% (277/297) Receiving objects: 94% (280/297) Receiving objects: 95% (283/297) Receiving objects: 96% (286/297) Receiving objects: 97% (289/297) Receiving objects: 98% (292/297) Receiving objects: 99% (295/297) Receiving objects: 100% (297/297) Receiving objects: 100% (297/297), 94.17 KiB | 0 bytes/s, done. Resolving deltas: 0% (0/146) Resolving deltas: 5% (8/146) Resolving deltas: 11% (17/146) Resolving deltas: 14% (21/146) Resolving deltas: 34% (51/146) Resolving deltas: 47% (69/146) Resolving deltas: 56% (82/146) Resolving deltas: 61% (90/146) Resolving deltas: 62% (91/146) Resolving deltas: 63% (93/146) Resolving deltas: 89% (130/146) Resolving deltas: 100% (146/146) Resolving deltas: 100% (146/146), done. Submodule path 'src/keycodemapdb': checked out '16e5b0787687d8904dad2c026107409eb9bfcb95' Running bootstrap... ./bootstrap: Bootstrapping from checked-out libvirt sources... ./bootstrap: consider installing git-merge-changelog from gnulib ./bootstrap: getting gnulib files... running: libtoolize --install --copy libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'. libtoolize: copying file `build-aux/config.guess' libtoolize: copying file `build-aux/config.sub' libtoolize: copying file `build-aux/install-sh' libtoolize: copying file `build-aux/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'. libtoolize: copying file `m4/libtool.m4' libtoolize: copying file `m4/ltoptions.m4' libtoolize: copying file `m4/ltsugar.m4' libtoolize: copying file `m4/ltversion.m4' libtoolize: copying file `m4/lt~obsolete.m4' ./bootstrap: .gnulib/gnulib-tool --no-changelog --aux-dir=build-aux --doc-base=doc --lib=libgnu --m4-base=m4/ --source-base=gnulib/lib/ --tests-base=gnulib/tests --local-dir=gnulib/local --lgpl=2 --with-tests --makefile-name=gnulib.mk --avoid=pt_chown --avoid=lock-tests --libtool --import ... Module list with included dependencies (indented): absolute-header accept accept-tests alloca alloca-opt alloca-opt-tests allocator areadlink areadlink-tests arpa_inet arpa_inet-tests assure autobuild base64 base64-tests binary-io binary-io-tests bind bind-tests bitrotate bitrotate-tests btowc btowc-tests builtin-expect byteswap byteswap-tests c-ctype c-ctype-tests c-strcase c-strcase-tests c-strcasestr c-strcasestr-tests calloc-posix canonicalize-lgpl canonicalize-lgpl-tests careadlinkat chown chown-tests clock-time cloexec cloexec-tests close close-tests configmake connect connect-tests count-leading-zeros count-leading-zeros-tests count-one-bits count-one-bits-tests ctype ctype-tests dirname-lgpl dosname double-slash-root dup dup-tests dup2 dup2-tests environ environ-tests errno errno-tests error execinfo exitfail extensions extern-inline fatal-signal fclose fclose-tests fcntl fcntl-h fcntl-h-tests fcntl-tests fd-hook fdatasync fdatasync-tests fdopen fdopen-tests fflush fflush-tests ffs ffs-tests ffsl ffsl-tests fgetc-tests filename flexmember float float-tests fnmatch fnmatch-h fnmatch-h-tests fnmatch-tests fpieee fpucw fpurge fpurge-tests fputc-tests fread-tests freading freading-tests fseek fseek-tests fseeko fseeko-tests fstat fstat-tests fsync fsync-tests ftell ftell-tests ftello ftello-tests ftruncate ftruncate-tests func func-tests fwrite-tests getaddrinfo getaddrinfo-tests getcwd-lgpl getcwd-lgpl-tests getdelim getdelim-tests getdtablesize getdtablesize-tests getgroups getgroups-tests gethostname gethostname-tests getline getline-tests getopt-posix getopt-posix-tests getpagesize getpass getpeername getpeername-tests getprogname getprogname-tests getsockname getsockname-tests getsockopt getsockopt-tests gettext-h gettimeofday gettimeofday-tests getugroups gitlog-to-changelog gnumakefile grantpt grantpt-tests hard-locale havelib hostent ignore-value ignore-value-tests include_next inet_ntop inet_ntop-tests inet_pton inet_pton-tests intprops intprops-tests inttypes inttypes-incomplete inttypes-tests ioctl ioctl-tests isatty isatty-tests isblank isblank-tests isnand-nolibm isnand-nolibm-tests isnanf-nolibm isnanf-nolibm-tests isnanl-nolibm isnanl-nolibm-tests langinfo langinfo-tests largefile ldexp ldexp-tests libc-config limits-h limits-h-tests listen listen-tests localcharset localcharset-tests locale locale-tests localeconv localeconv-tests localename localename-tests localtime-buffer lock lseek lseek-tests lstat lstat-tests maintainer-makefile malloc-posix malloca malloca-tests manywarnings math math-tests mbrtowc mbrtowc-tests mbsinit mbsinit-tests mbsrtowcs mbsrtowcs-tests mbtowc memchr memchr-tests mgetgroups mkdir mkdir-tests mkdtemp mkostemp mkostemps mktempd mktime mktime-internal msvc-inval msvc-nothrow multiarch nanosleep nanosleep-tests net_if net_if-tests netdb netdb-tests netinet_in netinet_in-tests nl_langinfo nl_langinfo-tests nocrash nonblocking nonblocking-pipe-tests nonblocking-socket-tests nonblocking-tests open open-tests openpty openpty-tests passfd passfd-tests pathmax pathmax-tests perror perror-tests physmem pipe-posix pipe-posix-tests pipe2 pipe2-tests poll poll-h poll-h-tests poll-tests posix-shell posix_openpt posix_openpt-tests posix_spawn-internal posix_spawn_file_actions_addclose posix_spawn_file_actions_addclose-tests posix_spawn_file_actions_adddup2 posix_spawn_file_actions_adddup2-tests posix_spawn_file_actions_addopen posix_spawn_file_actions_addopen-tests posix_spawn_file_actions_destroy posix_spawn_file_actions_init posix_spawnattr_destroy posix_spawnattr_init posix_spawnattr_setflags posix_spawnattr_setsigmask posix_spawnp posix_spawnp-tests pthread pthread_sigmask pthread_sigmask-tests ptsname ptsname-tests ptsname_r ptsname_r-tests pty pty-tests putenv raise raise-tests rawmemchr rawmemchr-tests read read-tests readlink readlink-tests realloc-posix recv recv-tests regex regex-tests same-inode sched sched-tests secure_getenv select select-tests send send-tests servent setenv setenv-tests setlocale setlocale-tests setsockopt setsockopt-tests sh-filename sigaction sigaction-tests signal-h signal-h-tests signbit signbit-tests sigpipe sigpipe-tests sigprocmask sigprocmask-tests size_max sleep sleep-tests snippet/_Noreturn snippet/arg-nonnull snippet/c++defs snippet/unused-parameter snippet/warn-on-use snprintf snprintf-tests socket socketlib sockets sockets-tests socklen spawn spawn-tests ssize_t stat stat-tests stat-time stat-time-tests stdalign stdalign-tests stdarg stdbool stdbool-tests stddef stddef-tests stdint stdint-tests stdio stdio-tests stdlib stdlib-tests stpcpy strcase strchrnul strchrnul-tests strdup-posix streq strerror strerror-override strerror-tests strerror_r-posix strerror_r-posix-tests string string-tests strings strings-tests strndup strnlen strnlen-tests strnlen1 strptime strsep strtok_r symlink symlink-tests sys_ioctl sys_ioctl-tests sys_select sys_select-tests sys_socket sys_socket-tests sys_stat sys_stat-tests sys_time sys_time-tests sys_types sys_types-tests sys_uio sys_uio-tests sys_utsname sys_utsname-tests sys_wait sys_wait-tests tempname termios termios-tests test-framework-sh test-framework-sh-tests thread thread-tests threadlib time time-tests time_r timegm ttyname_r ttyname_r-tests uname uname-tests unistd unistd-tests unitypes uniwidth/base uniwidth/width uniwidth/width-tests unlockpt unlockpt-tests unsetenv unsetenv-tests useless-if-before-free usleep usleep-tests vasnprintf vasnprintf-tests vasprintf vasprintf-tests vc-list-files vc-list-files-tests verify verify-tests vsnprintf vsnprintf-tests wait-process waitpid warnings wchar wchar-tests wcrtomb wcrtomb-tests wctob wctomb wctype-h wctype-h-tests wcwidth wcwidth-tests write write-tests xalloc xalloc-die xalloc-die-tests xalloc-oversized xsize Notice from module vasprintf: If you are using GNU gettext version 0.16.1 or older, add the following options to XGETTEXT_OPTIONS in your po/Makevars: --flag=asprintf:2:c-format --flag=vasprintf:2:c-format File list: build-aux/config.rpath build-aux/gitlog-to-changelog build-aux/mktempd build-aux/useless-if-before-free build-aux/vc-list-files lib/_Noreturn.h lib/accept.c lib/alloca.c lib/alloca.in.h lib/allocator.c lib/allocator.h lib/areadlink.c lib/areadlink.h lib/arg-nonnull.h lib/arpa_inet.in.h lib/asnprintf.c lib/asprintf.c lib/assure.h lib/base64.c lib/base64.h lib/basename-lgpl.c lib/binary-io.c lib/binary-io.h lib/bind.c lib/bitrotate.c lib/bitrotate.h lib/btowc.c lib/byteswap.in.h lib/c++defs.h lib/c-ctype.c lib/c-ctype.h lib/c-strcase.h lib/c-strcasecmp.c lib/c-strcasestr.c lib/c-strcasestr.h lib/c-strncasecmp.c lib/calloc.c lib/canonicalize-lgpl.c lib/careadlinkat.c lib/careadlinkat.h lib/cdefs.h lib/chown.c lib/cloexec.c lib/cloexec.h lib/close.c lib/connect.c lib/count-leading-zeros.c lib/count-leading-zeros.h lib/count-one-bits.c lib/count-one-bits.h lib/dirname-lgpl.c lib/dirname.h lib/dosname.h lib/dup2.c lib/errno.in.h lib/execinfo.c lib/execinfo.in.h lib/fchown-stub.c lib/fclose.c lib/fcntl.c lib/fcntl.in.h lib/fd-hook.c lib/fd-hook.h lib/fdatasync.c lib/fflush.c lib/ffs.c lib/ffsl.c lib/ffsl.h lib/filename.h lib/flexmember.h lib/float+.h lib/float.c lib/float.in.h lib/fnmatch.c lib/fnmatch.in.h lib/fnmatch_loop.c lib/fpurge.c lib/freading.c lib/freading.h lib/fseek.c lib/fseeko.c lib/fstat.c lib/fsync.c lib/ftell.c lib/ftello.c lib/gai_strerror.c lib/getaddrinfo.c lib/getcwd-lgpl.c lib/getdelim.c lib/getdtablesize.c lib/getgroups.c lib/gethostname.c lib/getline.c lib/getopt-cdefs.in.h lib/getopt-core.h lib/getopt-ext.h lib/getopt-pfx-core.h lib/getopt-pfx-ext.h lib/getopt.c lib/getopt.in.h lib/getopt1.c lib/getopt_int.h lib/getpass.c lib/getpass.h lib/getpeername.c lib/getsockname.c lib/gettext.h lib/gettimeofday.c lib/getugroups.c lib/getugroups.h lib/glthread/lock.c lib/glthread/lock.h lib/glthread/threadlib.c lib/hard-locale.c lib/hard-locale.h lib/ignore-value.h lib/inet_ntop.c lib/inet_pton.c lib/intprops.h lib/ioctl.c lib/isatty.c lib/itold.c lib/langinfo.in.h lib/libc-config.h lib/limits.in.h lib/listen.c lib/localcharset.c lib/localcharset.h lib/locale.in.h lib/localeconv.c lib/localtime-buffer.c lib/localtime-buffer.h lib/lseek.c lib/lstat.c lib/malloc.c lib/malloca.c lib/malloca.h lib/mbrtowc.c lib/mbsinit.c lib/mbsrtowcs-impl.h lib/mbsrtowcs-state.c lib/mbsrtowcs.c lib/mbtowc-impl.h lib/mbtowc.c lib/memchr.c lib/memchr.valgrind lib/mgetgroups.c lib/mgetgroups.h lib/mkdir.c lib/mkdtemp.c lib/mkostemp.c lib/mkostemps.c lib/mktime-internal.h lib/mktime.c lib/msvc-inval.c lib/msvc-inval.h lib/msvc-nothrow.c lib/msvc-nothrow.h lib/net_if.in.h lib/netdb.in.h lib/netinet_in.in.h lib/nl_langinfo.c lib/nonblocking.c lib/nonblocking.h lib/open.c lib/openpty.c lib/passfd.c lib/passfd.h lib/pathmax.h lib/perror.c lib/physmem.c lib/physmem.h lib/pipe.c lib/pipe2.c lib/poll.c lib/poll.in.h lib/posix_openpt.c lib/printf-args.c lib/printf-args.h lib/printf-parse.c lib/printf-parse.h lib/pthread.c lib/pthread.in.h lib/pthread_sigmask.c lib/pty.in.h lib/raise.c lib/rawmemchr.c lib/rawmemchr.valgrind lib/readlink.c lib/realloc.c lib/recv.c lib/regcomp.c lib/regex.c lib/regex.h lib/regex_internal.c lib/regex_internal.h lib/regexec.c lib/sched.in.h lib/secure_getenv.c lib/select.c lib/send.c lib/setenv.c lib/setsockopt.c lib/sig-handler.c lib/sig-handler.h lib/sigaction.c lib/signal.in.h lib/sigprocmask.c lib/size_max.h lib/sleep.c lib/snprintf.c lib/socket.c lib/sockets.c lib/sockets.h lib/stat-time.c lib/stat-time.h lib/stat-w32.c lib/stat-w32.h lib/stat.c lib/stdalign.in.h lib/stdarg.in.h lib/stdbool.in.h lib/stddef.in.h lib/stdint.in.h lib/stdio-impl.h lib/stdio-read.c lib/stdio-write.c lib/stdio.in.h lib/stdlib.in.h lib/stpcpy.c lib/str-two-way.h lib/strcasecmp.c lib/strchrnul.c lib/strchrnul.valgrind lib/strdup.c lib/streq.h lib/strerror-override.c lib/strerror-override.h lib/strerror.c lib/strerror_r.c lib/string.in.h lib/strings.in.h lib/stripslash.c lib/strncasecmp.c lib/strndup.c lib/strnlen.c lib/strnlen1.c lib/strnlen1.h lib/strptime.c lib/strsep.c lib/strtok_r.c lib/sys_ioctl.in.h lib/sys_select.in.h lib/sys_socket.c lib/sys_socket.in.h lib/sys_stat.in.h lib/sys_time.in.h lib/sys_types.in.h lib/sys_uio.in.h lib/sys_utsname.in.h lib/sys_wait.in.h lib/tempname.c lib/tempname.h lib/termios.in.h lib/time.in.h lib/time_r.c lib/timegm.c lib/ttyname_r.c lib/uname.c lib/unistd.c lib/unistd.in.h lib/unitypes.in.h lib/uniwidth.in.h lib/uniwidth/cjk.h lib/uniwidth/width.c lib/unsetenv.c lib/unused-parameter.h lib/usleep.c lib/vasnprintf.c lib/vasnprintf.h lib/vasprintf.c lib/verify.h lib/vsnprintf.c lib/w32sock.h lib/waitpid.c lib/warn-on-use.h lib/wchar.in.h lib/wcrtomb.c lib/wctype-h.c lib/wctype.in.h lib/wcwidth.c lib/xalloc-oversized.h lib/xsize.c lib/xsize.h m4/00gnulib.m4 m4/__inline.m4 m4/absolute-header.m4 m4/alloca.m4 m4/arpa_inet_h.m4 m4/asm-underscore.m4 m4/autobuild.m4 m4/base64.m4 m4/btowc.m4 m4/builtin-expect.m4 m4/byteswap.m4 m4/calloc.m4 m4/canonicalize.m4 m4/chown.m4 m4/clock_time.m4 m4/close.m4 m4/codeset.m4 m4/configmake.m4 m4/count-leading-zeros.m4 m4/count-one-bits.m4 m4/ctype.m4 m4/dirname.m4 m4/double-slash-root.m4 m4/dup.m4 m4/dup2.m4 m4/eealloc.m4 m4/environ.m4 m4/errno_h.m4 m4/error.m4 m4/execinfo.m4 m4/exponentd.m4 m4/exponentf.m4 m4/exponentl.m4 m4/extensions.m4 m4/extern-inline.m4 m4/fatal-signal.m4 m4/fclose.m4 m4/fcntl-o.m4 m4/fcntl.m4 m4/fcntl_h.m4 m4/fdatasync.m4 m4/fdopen.m4 m4/fflush.m4 m4/ffs.m4 m4/ffsl.m4 m4/flexmember.m4 m4/float_h.m4 m4/fnmatch.m4 m4/fnmatch_h.m4 m4/fpieee.m4 m4/fpurge.m4 m4/freading.m4 m4/fseek.m4 m4/fseeko.m4 m4/fstat.m4 m4/fsync.m4 m4/ftell.m4 m4/ftello.m4 m4/ftruncate.m4 m4/func.m4 m4/getaddrinfo.m4 m4/getcwd.m4 m4/getdelim.m4 m4/getdtablesize.m4 m4/getgroups.m4 m4/gethostname.m4 m4/getline.m4 m4/getopt.m4 m4/getpagesize.m4 m4/getpass.m4 m4/getprogname.m4 m4/gettimeofday.m4 m4/getugroups.m4 m4/glibc21.m4 m4/gnulib-common.m4 m4/grantpt.m4 m4/host-cpu-c-abi.m4 m4/hostent.m4 m4/include_next.m4 m4/inet_ntop.m4 m4/inet_pton.m4 m4/intl-thread-locale.m4 m4/intlmacosx.m4 m4/intmax_t.m4 m4/inttypes-pri.m4 m4/inttypes.m4 m4/inttypes_h.m4 m4/ioctl.m4 m4/isatty.m4 m4/isblank.m4 m4/isnand.m4 m4/isnanf.m4 m4/isnanl.m4 m4/langinfo_h.m4 m4/largefile.m4 m4/lcmessage.m4 m4/ldexp.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/libunistring-base.m4 m4/limits-h.m4 m4/localcharset.m4 m4/locale-fr.m4 m4/locale-ja.m4 m4/locale-tr.m4 m4/locale-zh.m4 m4/locale_h.m4 m4/localeconv.m4 m4/localename.m4 m4/localtime-buffer.m4 m4/lock.m4 m4/longlong.m4 m4/lseek.m4 m4/lstat.m4 m4/malloc.m4 m4/malloca.m4 m4/manywarnings-c++.m4 m4/manywarnings.m4 m4/math_h.m4 m4/mbrtowc.m4 m4/mbsinit.m4 m4/mbsrtowcs.m4 m4/mbstate_t.m4 m4/mbtowc.m4 m4/memchr.m4 m4/mgetgroups.m4 m4/mkdir.m4 m4/mkdtemp.m4 m4/mkostemp.m4 m4/mkostemps.m4 m4/mktime.m4 m4/mmap-anon.m4 m4/mode_t.m4 m4/msvc-inval.m4 m4/msvc-nothrow.m4 m4/multiarch.m4 m4/nanosleep.m4 m4/net_if_h.m4 m4/netdb_h.m4 m4/netinet_in_h.m4 m4/nl_langinfo.m4 m4/nocrash.m4 m4/nonblocking.m4 m4/off_t.m4 m4/open-cloexec.m4 m4/open.m4 m4/passfd.m4 m4/pathmax.m4 m4/perror.m4 m4/physmem.m4 m4/pipe.m4 m4/pipe2.m4 m4/poll.m4 m4/poll_h.m4 m4/posix-shell.m4 m4/posix_openpt.m4 m4/posix_spawn.m4 m4/printf.m4 m4/pthread.m4 m4/pthread_rwlock_rdlock.m4 m4/pthread_sigmask.m4 m4/ptsname.m4 m4/ptsname_r.m4 m4/pty.m4 m4/pty_h.m4 m4/putenv.m4 m4/raise.m4 m4/rawmemchr.m4 m4/read.m4 m4/readlink.m4 m4/realloc.m4 m4/regex.m4 m4/sched_h.m4 m4/secure_getenv.m4 m4/select.m4 m4/servent.m4 m4/setenv.m4 m4/setlocale.m4 m4/sh-filename.m4 m4/sig_atomic_t.m4 m4/sigaction.m4 m4/signal_h.m4 m4/signalblocking.m4 m4/signbit.m4 m4/sigpipe.m4 m4/size_max.m4 m4/sleep.m4 m4/snprintf.m4 m4/socketlib.m4 m4/sockets.m4 m4/socklen.m4 m4/sockpfaf.m4 m4/spawn_h.m4 m4/ssize_t.m4 m4/stat-time.m4 m4/stat.m4 m4/stdalign.m4 m4/stdarg.m4 m4/stdbool.m4 m4/stddef_h.m4 m4/stdint.m4 m4/stdint_h.m4 m4/stdio_h.m4 m4/stdlib_h.m4 m4/stpcpy.m4 m4/strcase.m4 m4/strchrnul.m4 m4/strdup.m4 m4/strerror.m4 m4/strerror_r.m4 m4/string_h.m4 m4/strings_h.m4 m4/strndup.m4 m4/strnlen.m4 m4/strptime.m4 m4/strsep.m4 m4/strtok_r.m4 m4/symlink.m4 m4/sys_ioctl_h.m4 m4/sys_select_h.m4 m4/sys_socket_h.m4 m4/sys_stat_h.m4 m4/sys_time_h.m4 m4/sys_types_h.m4 m4/sys_uio_h.m4 m4/sys_utsname_h.m4 m4/sys_wait_h.m4 m4/tempname.m4 m4/termios_h.m4 m4/thread.m4 m4/threadlib.m4 m4/time_h.m4 m4/time_r.m4 m4/timegm.m4 m4/tm_gmtoff.m4 m4/ttyname_r.m4 m4/uname.m4 m4/ungetc.m4 m4/unistd_h.m4 m4/unlockpt.m4 m4/usleep.m4 m4/vasnprintf.m4 m4/vasprintf.m4 m4/vsnprintf.m4 m4/wait-process.m4 m4/waitpid.m4 m4/warn-on-use.m4 m4/warnings.m4 m4/wchar_h.m4 m4/wchar_t.m4 m4/wcrtomb.m4 m4/wctob.m4 m4/wctomb.m4 m4/wctype_h.m4 m4/wcwidth.m4 m4/wint_t.m4 m4/write.m4 m4/xalloc.m4 m4/xsize.m4 tests/infinity.h tests/init.sh tests/macros.h tests/minus-zero.h tests/nan.h tests/nap.h tests/null-ptr.h tests/randomd.c tests/signature.h tests/socket-client.h tests/socket-server.h tests/test-accept.c tests/test-alloca-opt.c tests/test-areadlink.c tests/test-areadlink.h tests/test-arpa_inet.c tests/test-base64.c tests/test-binary-io.c tests/test-binary-io.sh tests/test-bind.c tests/test-bitrotate.c tests/test-btowc.c tests/test-btowc1.sh tests/test-btowc2.sh tests/test-byteswap.c tests/test-c-ctype.c tests/test-c-strcase.sh tests/test-c-strcasecmp.c tests/test-c-strcasestr.c tests/test-c-strncasecmp.c tests/test-canonicalize-lgpl.c tests/test-chown.c tests/test-chown.h tests/test-cloexec.c tests/test-close.c tests/test-connect.c tests/test-count-leading-zeros.c tests/test-count-one-bits.c tests/test-ctype.c tests/test-dup.c tests/test-dup2.c tests/test-environ.c tests/test-errno.c tests/test-fclose.c tests/test-fcntl-h.c tests/test-fcntl.c tests/test-fdatasync.c tests/test-fdopen.c tests/test-fflush.c tests/test-fflush2.c tests/test-fflush2.sh tests/test-ffs.c tests/test-ffsl.c tests/test-fgetc.c tests/test-float.c tests/test-fnmatch-h.c tests/test-fnmatch.c tests/test-fpurge.c tests/test-fputc.c tests/test-fread.c tests/test-freading.c tests/test-fseek.c tests/test-fseek.sh tests/test-fseek2.sh tests/test-fseeko.c tests/test-fseeko.sh tests/test-fseeko2.sh tests/test-fseeko3.c tests/test-fseeko3.sh tests/test-fseeko4.c tests/test-fseeko4.sh tests/test-fstat.c tests/test-fsync.c tests/test-ftell.c tests/test-ftell.sh tests/test-ftell2.sh tests/test-ftell3.c tests/test-ftello.c tests/test-ftello.sh tests/test-ftello2.sh tests/test-ftello3.c tests/test-ftello4.c tests/test-ftello4.sh tests/test-ftruncate.c tests/test-ftruncate.sh tests/test-func.c tests/test-fwrite.c tests/test-getaddrinfo.c tests/test-getcwd-lgpl.c tests/test-getdelim.c tests/test-getdtablesize.c tests/test-getgroups.c tests/test-gethostname.c tests/test-getline.c tests/test-getopt-main.h tests/test-getopt-posix.c tests/test-getopt.h tests/test-getpeername.c tests/test-getprogname.c tests/test-getsockname.c tests/test-getsockopt.c tests/test-gettimeofday.c tests/test-grantpt.c tests/test-ignore-value.c tests/test-inet_ntop.c tests/test-inet_pton.c tests/test-init.sh tests/test-intprops.c tests/test-inttypes.c tests/test-ioctl.c tests/test-isatty.c tests/test-isblank.c tests/test-isnand-nolibm.c tests/test-isnand.h tests/test-isnanf-nolibm.c tests/test-isnanf.h tests/test-isnanl-nolibm.c tests/test-isnanl.h tests/test-langinfo.c tests/test-ldexp.c tests/test-ldexp.h tests/test-limits-h.c tests/test-listen.c tests/test-localcharset.c tests/test-locale.c tests/test-localeconv.c tests/test-localename.c tests/test-lseek.c tests/test-lseek.sh tests/test-lstat.c tests/test-lstat.h tests/test-malloca.c tests/test-math.c tests/test-mbrtowc-w32-1.sh tests/test-mbrtowc-w32-2.sh tests/test-mbrtowc-w32-3.sh tests/test-mbrtowc-w32-4.sh tests/test-mbrtowc-w32-5.sh tests/test-mbrtowc-w32.c tests/test-mbrtowc.c tests/test-mbrtowc1.sh tests/test-mbrtowc2.sh tests/test-mbrtowc3.sh tests/test-mbrtowc4.sh tests/test-mbrtowc5.sh tests/test-mbsinit.c tests/test-mbsinit.sh tests/test-mbsrtowcs.c tests/test-mbsrtowcs1.sh tests/test-mbsrtowcs2.sh tests/test-mbsrtowcs3.sh tests/test-mbsrtowcs4.sh tests/test-memchr.c tests/test-mkdir.c tests/test-mkdir.h tests/test-nanosleep.c tests/test-net_if.c tests/test-netdb.c tests/test-netinet_in.c tests/test-nl_langinfo.c tests/test-nl_langinfo.sh tests/test-nonblocking-misc.h tests/test-nonblocking-pipe-child.c tests/test-nonblocking-pipe-main.c tests/test-nonblocking-pipe.h tests/test-nonblocking-pipe.sh tests/test-nonblocking-reader.h tests/test-nonblocking-socket-child.c tests/test-nonblocking-socket-main.c tests/test-nonblocking-socket.h tests/test-nonblocking-socket.sh tests/test-nonblocking-writer.h tests/test-nonblocking.c tests/test-open.c tests/test-open.h tests/test-openpty.c tests/test-passfd.c tests/test-pathmax.c tests/test-perror.c tests/test-perror.sh tests/test-perror2.c tests/test-pipe.c tests/test-pipe2.c tests/test-poll-h.c tests/test-poll.c tests/test-posix_openpt.c tests/test-posix_spawn1.c tests/test-posix_spawn1.in.sh tests/test-posix_spawn2.c tests/test-posix_spawn2.in.sh tests/test-posix_spawn_file_actions_addclose.c tests/test-posix_spawn_file_actions_adddup2.c tests/test-posix_spawn_file_actions_addopen.c tests/test-pthread_sigmask1.c tests/test-pthread_sigmask2.c tests/test-ptsname.c tests/test-ptsname_r.c tests/test-raise.c tests/test-rawmemchr.c tests/test-read.c tests/test-readlink.c tests/test-readlink.h tests/test-recv.c tests/test-regex.c tests/test-sched.c tests/test-select-fd.c tests/test-select-in.sh tests/test-select-out.sh tests/test-select-stdin.c tests/test-select.c tests/test-select.h tests/test-send.c tests/test-setenv.c tests/test-setlocale1.c tests/test-setlocale1.sh tests/test-setlocale2.c tests/test-setlocale2.sh tests/test-setsockopt.c tests/test-sigaction.c tests/test-signal-h.c tests/test-signbit.c tests/test-sigpipe.c tests/test-sigpipe.sh tests/test-sigprocmask.c tests/test-sleep.c tests/test-snprintf.c tests/test-sockets.c tests/test-spawn.c tests/test-stat-time.c tests/test-stat.c tests/test-stat.h tests/test-stdalign.c tests/test-stdbool.c tests/test-stddef.c tests/test-stdint.c tests/test-stdio.c tests/test-stdlib.c tests/test-strchrnul.c tests/test-strerror.c tests/test-strerror_r.c tests/test-string.c tests/test-strings.c tests/test-strnlen.c tests/test-symlink.c tests/test-symlink.h tests/test-sys_ioctl.c tests/test-sys_select.c tests/test-sys_socket.c tests/test-sys_stat.c tests/test-sys_time.c tests/test-sys_types.c tests/test-sys_uio.c tests/test-sys_utsname.c tests/test-sys_wait.c tests/test-sys_wait.h tests/test-termios.c tests/test-thread_create.c tests/test-thread_self.c tests/test-time.c tests/test-ttyname_r.c tests/test-uname.c tests/test-unistd.c tests/test-unlockpt.c tests/test-unsetenv.c tests/test-usleep.c tests/test-vasnprintf.c tests/test-vasprintf.c tests/test-vc-list-files-cvs.sh tests/test-vc-list-files-git.sh tests/test-verify-try.c tests/test-verify.c tests/test-verify.sh tests/test-vsnprintf.c tests/test-wchar.c tests/test-wcrtomb-w32-1.sh tests/test-wcrtomb-w32-2.sh tests/test-wcrtomb-w32-3.sh tests/test-wcrtomb-w32-4.sh tests/test-wcrtomb-w32-5.sh tests/test-wcrtomb-w32.c tests/test-wcrtomb.c tests/test-wcrtomb.sh tests/test-wctype-h.c tests/test-wcwidth.c tests/test-write.c tests/test-xalloc-die.c tests/test-xalloc-die.sh tests/uniwidth/test-uc_width.c tests/uniwidth/test-uc_width2.c tests/uniwidth/test-uc_width2.sh tests/zerosize-ptr.h lib/_Noreturn.h -> tests/_Noreturn.h lib/arg-nonnull.h -> tests/arg-nonnull.h lib/c++defs.h -> tests/c++defs.h lib/ctype.in.h -> tests/ctype.in.h lib/dup.c -> tests/dup.c lib/error.c -> tests/error.c lib/error.h -> tests/error.h lib/exitfail.c -> tests/exitfail.c lib/exitfail.h -> tests/exitfail.h lib/fatal-signal.c -> tests/fatal-signal.c lib/fatal-signal.h -> tests/fatal-signal.h lib/fdopen.c -> tests/fdopen.c lib/float+.h -> tests/float+.h lib/fpucw.h -> tests/fpucw.h lib/ftruncate.c -> tests/ftruncate.c lib/getpagesize.c -> tests/getpagesize.c lib/getprogname.c -> tests/getprogname.c lib/getprogname.h -> tests/getprogname.h lib/getsockopt.c -> tests/getsockopt.c lib/glthread/thread.c -> tests/glthread/thread.c lib/glthread/thread.h -> tests/glthread/thread.h lib/grantpt.c -> tests/grantpt.c lib/inttypes.in.h -> tests/inttypes.in.h lib/isblank.c -> tests/isblank.c lib/isnan.c -> tests/isnan.c lib/isnand-nolibm.h -> tests/isnand-nolibm.h lib/isnand.c -> tests/isnand.c lib/isnanf-nolibm.h -> tests/isnanf-nolibm.h lib/isnanf.c -> tests/isnanf.c lib/isnanl-nolibm.h -> tests/isnanl-nolibm.h lib/isnanl.c -> tests/isnanl.c lib/localename-table.c -> tests/localename-table.c lib/localename-table.h -> tests/localename-table.h lib/localename.c -> tests/localename.c lib/localename.h -> tests/localename.h lib/math.c -> tests/math.c lib/math.in.h -> tests/math.in.h lib/nanosleep.c -> tests/nanosleep.c lib/ptsname.c -> tests/ptsname.c lib/ptsname_r.c -> tests/ptsname_r.c lib/pty-private.h -> tests/pty-private.h lib/putenv.c -> tests/putenv.c lib/read.c -> tests/read.c lib/same-inode.h -> tests/same-inode.h lib/setlocale.c -> tests/setlocale.c lib/signbitd.c -> tests/signbitd.c lib/signbitf.c -> tests/signbitf.c lib/signbitl.c -> tests/signbitl.c lib/spawn.in.h -> tests/spawn.in.h lib/spawn_faction_addclose.c -> tests/spawn_faction_addclose.c lib/spawn_faction_adddup2.c -> tests/spawn_faction_adddup2.c lib/spawn_faction_addopen.c -> tests/spawn_faction_addopen.c lib/spawn_faction_destroy.c -> tests/spawn_faction_destroy.c lib/spawn_faction_init.c -> tests/spawn_faction_init.c lib/spawn_int.h -> tests/spawn_int.h lib/spawnattr_destroy.c -> tests/spawnattr_destroy.c lib/spawnattr_init.c -> tests/spawnattr_init.c lib/spawnattr_setflags.c -> tests/spawnattr_setflags.c lib/spawnattr_setsigmask.c -> tests/spawnattr_setsigmask.c lib/spawni.c -> tests/spawni.c lib/spawnp.c -> tests/spawnp.c lib/symlink.c -> tests/symlink.c lib/unlockpt.c -> tests/unlockpt.c lib/unused-parameter.h -> tests/unused-parameter.h lib/w32sock.h -> tests/w32sock.h lib/wait-process.c -> tests/wait-process.c lib/wait-process.h -> tests/wait-process.h lib/warn-on-use.h -> tests/warn-on-use.h lib/wctob.c -> tests/wctob.c lib/wctomb-impl.h -> tests/wctomb-impl.h lib/wctomb.c -> tests/wctomb.c lib/write.c -> tests/write.c lib/xalloc-die.c -> tests/xalloc-die.c lib/xalloc.h -> tests/xalloc.h lib/xmalloc.c -> tests/xmalloc.c top/GNUmakefile top/maint.mk Creating directory ./gnulib/lib/glthread Creating directory ./gnulib/lib/uniwidth Creating directory ./gnulib/tests/glthread Creating directory ./gnulib/tests/uniwidth Copying file GNUmakefile Copying file build-aux/config.rpath Copying file build-aux/gitlog-to-changelog Copying file build-aux/mktempd Copying file build-aux/useless-if-before-free Copying file build-aux/vc-list-files Copying file gnulib/lib/_Noreturn.h Copying file gnulib/lib/accept.c Copying file gnulib/lib/alloca.c Copying file gnulib/lib/alloca.in.h Copying file gnulib/lib/allocator.c Copying file gnulib/lib/allocator.h Copying file gnulib/lib/areadlink.c Copying file gnulib/lib/areadlink.h Copying file gnulib/lib/arg-nonnull.h Copying file gnulib/lib/arpa_inet.in.h Copying file gnulib/lib/asnprintf.c Copying file gnulib/lib/asprintf.c Copying file gnulib/lib/assure.h Copying file gnulib/lib/base64.c Copying file gnulib/lib/base64.h Copying file gnulib/lib/basename-lgpl.c Copying file gnulib/lib/binary-io.c Copying file gnulib/lib/binary-io.h Copying file gnulib/lib/bind.c Copying file gnulib/lib/bitrotate.c Copying file gnulib/lib/bitrotate.h Copying file gnulib/lib/btowc.c Copying file gnulib/lib/byteswap.in.h Copying file gnulib/lib/c++defs.h Copying file gnulib/lib/c-ctype.c Copying file gnulib/lib/c-ctype.h Copying file gnulib/lib/c-strcase.h Copying file gnulib/lib/c-strcasecmp.c Copying file gnulib/lib/c-strcasestr.c Copying file gnulib/lib/c-strcasestr.h Copying file gnulib/lib/c-strncasecmp.c Copying file gnulib/lib/calloc.c Copying file gnulib/lib/canonicalize-lgpl.c Copying file gnulib/lib/careadlinkat.c Copying file gnulib/lib/careadlinkat.h Copying file gnulib/lib/cdefs.h Copying file gnulib/lib/chown.c Copying file gnulib/lib/cloexec.c Copying file gnulib/lib/cloexec.h Copying file gnulib/lib/close.c Copying file gnulib/lib/connect.c Copying file gnulib/lib/count-leading-zeros.c Copying file gnulib/lib/count-leading-zeros.h Copying file gnulib/lib/count-one-bits.c Copying file gnulib/lib/count-one-bits.h Copying file gnulib/lib/dirname-lgpl.c Copying file gnulib/lib/dirname.h Copying file gnulib/lib/dosname.h Copying file gnulib/lib/dup2.c Copying file gnulib/lib/errno.in.h Copying file gnulib/lib/execinfo.c Copying file gnulib/lib/execinfo.in.h Copying file gnulib/lib/fchown-stub.c Copying file gnulib/lib/fclose.c Copying file gnulib/lib/fcntl.c Copying file gnulib/lib/fcntl.in.h Copying file gnulib/lib/fd-hook.c Copying file gnulib/lib/fd-hook.h Copying file gnulib/lib/fdatasync.c Copying file gnulib/lib/fflush.c Copying file gnulib/lib/ffs.c Copying file gnulib/lib/ffsl.c Copying file gnulib/lib/ffsl.h Copying file gnulib/lib/filename.h Copying file gnulib/lib/flexmember.h Copying file gnulib/lib/float+.h Copying file gnulib/lib/float.c Copying file gnulib/lib/float.in.h Copying file gnulib/lib/fnmatch.c Copying file gnulib/lib/fnmatch.in.h Copying file gnulib/lib/fnmatch_loop.c Copying file gnulib/lib/fpurge.c Copying file gnulib/lib/freading.c Copying file gnulib/lib/freading.h Copying file gnulib/lib/fseek.c Copying file gnulib/lib/fseeko.c Copying file gnulib/lib/fstat.c Copying file gnulib/lib/fsync.c Copying file gnulib/lib/ftell.c Copying file gnulib/lib/ftello.c Copying file gnulib/lib/gai_strerror.c Copying file gnulib/lib/getaddrinfo.c Copying file gnulib/lib/getcwd-lgpl.c Copying file gnulib/lib/getdelim.c Copying file gnulib/lib/getdtablesize.c Copying file gnulib/lib/getgroups.c Copying file gnulib/lib/gethostname.c Copying file gnulib/lib/getline.c Copying file gnulib/lib/getopt-cdefs.in.h Copying file gnulib/lib/getopt-core.h Copying file gnulib/lib/getopt-ext.h Copying file gnulib/lib/getopt-pfx-core.h Copying file gnulib/lib/getopt-pfx-ext.h Copying file gnulib/lib/getopt.c Copying file gnulib/lib/getopt.in.h Copying file gnulib/lib/getopt1.c Copying file gnulib/lib/getopt_int.h Copying file gnulib/lib/getpass.c Copying file gnulib/lib/getpass.h Copying file gnulib/lib/getpeername.c Copying file gnulib/lib/getsockname.c Copying file gnulib/lib/gettext.h Copying file gnulib/lib/gettimeofday.c Copying file gnulib/lib/getugroups.c Copying file gnulib/lib/getugroups.h Copying file gnulib/lib/glthread/lock.c Copying file gnulib/lib/glthread/lock.h Copying file gnulib/lib/glthread/threadlib.c Copying file gnulib/lib/hard-locale.c Copying file gnulib/lib/hard-locale.h Copying file gnulib/lib/ignore-value.h Copying file gnulib/lib/inet_ntop.c Copying file gnulib/lib/inet_pton.c Copying file gnulib/lib/intprops.h Copying file gnulib/lib/ioctl.c Copying file gnulib/lib/isatty.c Copying file gnulib/lib/itold.c Copying file gnulib/lib/langinfo.in.h Copying file gnulib/lib/libc-config.h Copying file gnulib/lib/limits.in.h Copying file gnulib/lib/listen.c Copying file gnulib/lib/localcharset.c Copying file gnulib/lib/localcharset.h Copying file gnulib/lib/locale.in.h Copying file gnulib/lib/localeconv.c Copying file gnulib/lib/localtime-buffer.c Copying file gnulib/lib/localtime-buffer.h Copying file gnulib/lib/lseek.c Copying file gnulib/lib/lstat.c Copying file gnulib/lib/malloc.c Copying file gnulib/lib/malloca.c Copying file gnulib/lib/malloca.h Copying file gnulib/lib/mbrtowc.c Copying file gnulib/lib/mbsinit.c Copying file gnulib/lib/mbsrtowcs-impl.h Copying file gnulib/lib/mbsrtowcs-state.c Copying file gnulib/lib/mbsrtowcs.c Copying file gnulib/lib/mbtowc-impl.h Copying file gnulib/lib/mbtowc.c Copying file gnulib/lib/memchr.c Copying file gnulib/lib/memchr.valgrind Copying file gnulib/lib/mgetgroups.c Copying file gnulib/lib/mgetgroups.h Copying file gnulib/lib/mkdir.c Copying file gnulib/lib/mkdtemp.c Copying file gnulib/lib/mkostemp.c Copying file gnulib/lib/mkostemps.c Copying file gnulib/lib/mktime-internal.h Copying file gnulib/lib/mktime.c Copying file gnulib/lib/msvc-inval.c Copying file gnulib/lib/msvc-inval.h Copying file gnulib/lib/msvc-nothrow.c Copying file gnulib/lib/msvc-nothrow.h Copying file gnulib/lib/net_if.in.h Copying file gnulib/lib/netdb.in.h Copying file gnulib/lib/netinet_in.in.h Copying file gnulib/lib/nl_langinfo.c Copying file gnulib/lib/nonblocking.c Copying file gnulib/lib/nonblocking.h Copying file gnulib/lib/open.c Copying file gnulib/lib/openpty.c Copying file gnulib/lib/passfd.c Copying file gnulib/lib/passfd.h Copying file gnulib/lib/pathmax.h Copying file gnulib/lib/perror.c Copying file gnulib/lib/physmem.c Copying file gnulib/lib/physmem.h Copying file gnulib/lib/pipe.c Copying file gnulib/lib/pipe2.c Copying file gnulib/lib/poll.c Copying file gnulib/lib/poll.in.h Copying file gnulib/lib/posix_openpt.c Copying file gnulib/lib/printf-args.c Copying file gnulib/lib/printf-args.h Copying file gnulib/lib/printf-parse.c Copying file gnulib/lib/printf-parse.h Copying file gnulib/lib/pthread.c Copying file gnulib/lib/pthread.in.h Copying file gnulib/lib/pthread_sigmask.c Copying file gnulib/lib/pty.in.h Copying file gnulib/lib/raise.c Copying file gnulib/lib/rawmemchr.c Copying file gnulib/lib/rawmemchr.valgrind Copying file gnulib/lib/readlink.c Copying file gnulib/lib/realloc.c Copying file gnulib/lib/recv.c Copying file gnulib/lib/regcomp.c Copying file gnulib/lib/regex.c Copying file gnulib/lib/regex.h Copying file gnulib/lib/regex_internal.c Copying file gnulib/lib/regex_internal.h Copying file gnulib/lib/regexec.c Copying file gnulib/lib/sched.in.h Copying file gnulib/lib/secure_getenv.c Copying file gnulib/lib/select.c Copying file gnulib/lib/send.c Copying file gnulib/lib/setenv.c Copying file gnulib/lib/setsockopt.c Copying file gnulib/lib/sig-handler.c Copying file gnulib/lib/sig-handler.h Copying file gnulib/lib/sigaction.c Copying file gnulib/lib/signal.in.h Copying file gnulib/lib/sigprocmask.c Copying file gnulib/lib/size_max.h Copying file gnulib/lib/sleep.c Copying file gnulib/lib/snprintf.c Copying file gnulib/lib/socket.c Copying file gnulib/lib/sockets.c Copying file gnulib/lib/sockets.h Copying file gnulib/lib/stat-time.c Copying file gnulib/lib/stat-time.h Copying file gnulib/lib/stat-w32.c Copying file gnulib/lib/stat-w32.h Copying file gnulib/lib/stat.c Copying file gnulib/lib/stdalign.in.h Copying file gnulib/lib/stdarg.in.h Copying file gnulib/lib/stdbool.in.h Copying file gnulib/lib/stddef.in.h Copying file gnulib/lib/stdint.in.h Copying file gnulib/lib/stdio-impl.h Copying file gnulib/lib/stdio-read.c Copying file gnulib/lib/stdio-write.c Copying file gnulib/lib/stdio.in.h Copying file gnulib/lib/stdlib.in.h Copying file gnulib/lib/stpcpy.c Copying file gnulib/lib/str-two-way.h Copying file gnulib/lib/strcasecmp.c Copying file gnulib/lib/strchrnul.c Copying file gnulib/lib/strchrnul.valgrind Copying file gnulib/lib/strdup.c Copying file gnulib/lib/streq.h Copying file gnulib/lib/strerror-override.c Copying file gnulib/lib/strerror-override.h Copying file gnulib/lib/strerror.c Copying file gnulib/lib/strerror_r.c Copying file gnulib/lib/string.in.h Copying file gnulib/lib/strings.in.h Copying file gnulib/lib/stripslash.c Copying file gnulib/lib/strncasecmp.c Copying file gnulib/lib/strndup.c Copying file gnulib/lib/strnlen.c Copying file gnulib/lib/strnlen1.c Copying file gnulib/lib/strnlen1.h Copying file gnulib/lib/strptime.c Copying file gnulib/lib/strsep.c Copying file gnulib/lib/strtok_r.c Copying file gnulib/lib/sys_ioctl.in.h Copying file gnulib/lib/sys_select.in.h Copying file gnulib/lib/sys_socket.c Copying file gnulib/lib/sys_socket.in.h Copying file gnulib/lib/sys_stat.in.h Copying file gnulib/lib/sys_time.in.h Copying file gnulib/lib/sys_types.in.h Copying file gnulib/lib/sys_uio.in.h Copying file gnulib/lib/sys_utsname.in.h Copying file gnulib/lib/sys_wait.in.h Copying file gnulib/lib/tempname.c Copying file gnulib/lib/tempname.h Copying file gnulib/lib/termios.in.h Copying file gnulib/lib/time.in.h Copying file gnulib/lib/time_r.c Copying file gnulib/lib/timegm.c Copying file gnulib/lib/ttyname_r.c Copying file gnulib/lib/uname.c Copying file gnulib/lib/unistd.c Copying file gnulib/lib/unistd.in.h Copying file gnulib/lib/unitypes.in.h Copying file gnulib/lib/uniwidth.in.h Copying file gnulib/lib/uniwidth/cjk.h Copying file gnulib/lib/uniwidth/width.c Copying file gnulib/lib/unsetenv.c Copying file gnulib/lib/unused-parameter.h Copying file gnulib/lib/usleep.c Copying file gnulib/lib/vasnprintf.c Copying file gnulib/lib/vasnprintf.h Copying file gnulib/lib/vasprintf.c Copying file gnulib/lib/verify.h Copying file gnulib/lib/vsnprintf.c Copying file gnulib/lib/w32sock.h Copying file gnulib/lib/waitpid.c Copying file gnulib/lib/warn-on-use.h Copying file gnulib/lib/wchar.in.h Copying file gnulib/lib/wcrtomb.c Copying file gnulib/lib/wctype-h.c Copying file gnulib/lib/wctype.in.h Copying file gnulib/lib/wcwidth.c Copying file gnulib/lib/xalloc-oversized.h Copying file gnulib/lib/xsize.c Copying file gnulib/lib/xsize.h Copying file gnulib/tests/_Noreturn.h Copying file gnulib/tests/arg-nonnull.h Copying file gnulib/tests/c++defs.h Copying file gnulib/tests/ctype.in.h Copying file gnulib/tests/dup.c Copying file gnulib/tests/error.c Copying file gnulib/tests/error.h Copying file gnulib/tests/exitfail.c Copying file gnulib/tests/exitfail.h Copying file gnulib/tests/fatal-signal.c Copying file gnulib/tests/fatal-signal.h Copying file gnulib/tests/fdopen.c Copying file gnulib/tests/float+.h Copying file gnulib/tests/fpucw.h Copying file gnulib/tests/ftruncate.c Copying file gnulib/tests/getpagesize.c Copying file gnulib/tests/getprogname.c Copying file gnulib/tests/getprogname.h Copying file gnulib/tests/getsockopt.c Copying file gnulib/tests/glthread/thread.c Copying file gnulib/tests/glthread/thread.h Copying file gnulib/tests/grantpt.c Copying file gnulib/tests/infinity.h Copying file gnulib/tests/init.sh Copying file gnulib/tests/inttypes.in.h Copying file gnulib/tests/isblank.c Copying file gnulib/tests/isnan.c Copying file gnulib/tests/isnand-nolibm.h Copying file gnulib/tests/isnand.c Copying file gnulib/tests/isnanf-nolibm.h Copying file gnulib/tests/isnanf.c Copying file gnulib/tests/isnanl-nolibm.h Copying file gnulib/tests/isnanl.c Copying file gnulib/tests/localename-table.c Copying file gnulib/tests/localename-table.h Copying file gnulib/tests/localename.c Copying file gnulib/tests/localename.h Copying file gnulib/tests/macros.h Copying file gnulib/tests/math.c Copying file gnulib/tests/math.in.h Copying file gnulib/tests/minus-zero.h Copying file gnulib/tests/nan.h Copying file gnulib/tests/nanosleep.c Copying file gnulib/tests/nap.h Copying file gnulib/tests/null-ptr.h Copying file gnulib/tests/ptsname.c Copying file gnulib/tests/ptsname_r.c Copying file gnulib/tests/pty-private.h Copying file gnulib/tests/putenv.c Copying file gnulib/tests/randomd.c Copying file gnulib/tests/read.c Copying file gnulib/tests/same-inode.h Copying file gnulib/tests/setlocale.c Copying file gnulib/tests/signature.h Copying file gnulib/tests/signbitd.c Copying file gnulib/tests/signbitf.c Copying file gnulib/tests/signbitl.c Copying file gnulib/tests/socket-client.h Copying file gnulib/tests/socket-server.h Copying file gnulib/tests/spawn.in.h Copying file gnulib/tests/spawn_faction_addclose.c Copying file gnulib/tests/spawn_faction_adddup2.c Copying file gnulib/tests/spawn_faction_addopen.c Copying file gnulib/tests/spawn_faction_destroy.c Copying file gnulib/tests/spawn_faction_init.c Copying file gnulib/tests/spawn_int.h Copying file gnulib/tests/spawnattr_destroy.c Copying file gnulib/tests/spawnattr_init.c Copying file gnulib/tests/spawnattr_setflags.c Copying file gnulib/tests/spawnattr_setsigmask.c Copying file gnulib/tests/spawni.c Copying file gnulib/tests/spawnp.c Copying file gnulib/tests/symlink.c Copying file gnulib/tests/test-accept.c Copying file gnulib/tests/test-alloca-opt.c Copying file gnulib/tests/test-areadlink.c Copying file gnulib/tests/test-areadlink.h Copying file gnulib/tests/test-arpa_inet.c Copying file gnulib/tests/test-base64.c Copying file gnulib/tests/test-binary-io.c Copying file gnulib/tests/test-binary-io.sh Copying file gnulib/tests/test-bind.c Copying file gnulib/tests/test-bitrotate.c Copying file gnulib/tests/test-btowc.c Copying file gnulib/tests/test-btowc1.sh Copying file gnulib/tests/test-btowc2.sh Copying file gnulib/tests/test-byteswap.c Copying file gnulib/tests/test-c-ctype.c Copying file gnulib/tests/test-c-strcase.sh Copying file gnulib/tests/test-c-strcasecmp.c Copying file gnulib/tests/test-c-strcasestr.c Copying file gnulib/tests/test-c-strncasecmp.c Copying file gnulib/tests/test-canonicalize-lgpl.c Copying file gnulib/tests/test-chown.c Copying file gnulib/tests/test-chown.h Copying file gnulib/tests/test-cloexec.c Copying file gnulib/tests/test-close.c Copying file gnulib/tests/test-connect.c Copying file gnulib/tests/test-count-leading-zeros.c Copying file gnulib/tests/test-count-one-bits.c Copying file gnulib/tests/test-ctype.c Copying file gnulib/tests/test-dup.c Copying file gnulib/tests/test-dup2.c Copying file gnulib/tests/test-environ.c Copying file gnulib/tests/test-errno.c Copying file gnulib/tests/test-fclose.c Copying file gnulib/tests/test-fcntl-h.c Copying file gnulib/tests/test-fcntl.c Copying file gnulib/tests/test-fdatasync.c Copying file gnulib/tests/test-fdopen.c Copying file gnulib/tests/test-fflush.c Copying file gnulib/tests/test-fflush2.c Copying file gnulib/tests/test-fflush2.sh Copying file gnulib/tests/test-ffs.c Copying file gnulib/tests/test-ffsl.c Copying file gnulib/tests/test-fgetc.c Copying file gnulib/tests/test-float.c Copying file gnulib/tests/test-fnmatch-h.c Copying file gnulib/tests/test-fnmatch.c Copying file gnulib/tests/test-fpurge.c Copying file gnulib/tests/test-fputc.c Copying file gnulib/tests/test-fread.c Copying file gnulib/tests/test-freading.c Copying file gnulib/tests/test-fseek.c Copying file gnulib/tests/test-fseek.sh Copying file gnulib/tests/test-fseek2.sh Copying file gnulib/tests/test-fseeko.c Copying file gnulib/tests/test-fseeko.sh Copying file gnulib/tests/test-fseeko2.sh Copying file gnulib/tests/test-fseeko3.c Copying file gnulib/tests/test-fseeko3.sh Copying file gnulib/tests/test-fseeko4.c Copying file gnulib/tests/test-fseeko4.sh Copying file gnulib/tests/test-fstat.c Copying file gnulib/tests/test-fsync.c Copying file gnulib/tests/test-ftell.c Copying file gnulib/tests/test-ftell.sh Copying file gnulib/tests/test-ftell2.sh Copying file gnulib/tests/test-ftell3.c Copying file gnulib/tests/test-ftello.c Copying file gnulib/tests/test-ftello.sh Copying file gnulib/tests/test-ftello2.sh Copying file gnulib/tests/test-ftello3.c Copying file gnulib/tests/test-ftello4.c Copying file gnulib/tests/test-ftello4.sh Copying file gnulib/tests/test-ftruncate.c Copying file gnulib/tests/test-ftruncate.sh Copying file gnulib/tests/test-func.c Copying file gnulib/tests/test-fwrite.c Copying file gnulib/tests/test-getaddrinfo.c Copying file gnulib/tests/test-getcwd-lgpl.c Copying file gnulib/tests/test-getdelim.c Copying file gnulib/tests/test-getdtablesize.c Copying file gnulib/tests/test-getgroups.c Copying file gnulib/tests/test-gethostname.c Copying file gnulib/tests/test-getline.c Copying file gnulib/tests/test-getopt-main.h Copying file gnulib/tests/test-getopt-posix.c Copying file gnulib/tests/test-getopt.h Copying file gnulib/tests/test-getpeername.c Copying file gnulib/tests/test-getprogname.c Copying file gnulib/tests/test-getsockname.c Copying file gnulib/tests/test-getsockopt.c Copying file gnulib/tests/test-gettimeofday.c Copying file gnulib/tests/test-grantpt.c Copying file gnulib/tests/test-ignore-value.c Copying file gnulib/tests/test-inet_ntop.c Copying file gnulib/tests/test-inet_pton.c Copying file gnulib/tests/test-init.sh Copying file gnulib/tests/test-intprops.c Copying file gnulib/tests/test-inttypes.c Copying file gnulib/tests/test-ioctl.c Copying file gnulib/tests/test-isatty.c Copying file gnulib/tests/test-isblank.c Copying file gnulib/tests/test-isnand-nolibm.c Copying file gnulib/tests/test-isnand.h Copying file gnulib/tests/test-isnanf-nolibm.c Copying file gnulib/tests/test-isnanf.h Copying file gnulib/tests/test-isnanl-nolibm.c Copying file gnulib/tests/test-isnanl.h Copying file gnulib/tests/test-langinfo.c Copying file gnulib/tests/test-ldexp.c Copying file gnulib/tests/test-ldexp.h Copying file gnulib/tests/test-limits-h.c Copying file gnulib/tests/test-listen.c Copying file gnulib/tests/test-localcharset.c Copying file gnulib/tests/test-locale.c Copying file gnulib/tests/test-localeconv.c Copying file gnulib/tests/test-localename.c Copying file gnulib/tests/test-lseek.c Copying file gnulib/tests/test-lseek.sh Copying file gnulib/tests/test-lstat.c Copying file gnulib/tests/test-lstat.h Copying file gnulib/tests/test-malloca.c Copying file gnulib/tests/test-math.c Copying file gnulib/tests/test-mbrtowc-w32-1.sh Copying file gnulib/tests/test-mbrtowc-w32-2.sh Copying file gnulib/tests/test-mbrtowc-w32-3.sh Copying file gnulib/tests/test-mbrtowc-w32-4.sh Copying file gnulib/tests/test-mbrtowc-w32-5.sh Copying file gnulib/tests/test-mbrtowc-w32.c Copying file gnulib/tests/test-mbrtowc.c Copying file gnulib/tests/test-mbrtowc1.sh Copying file gnulib/tests/test-mbrtowc2.sh Copying file gnulib/tests/test-mbrtowc3.sh Copying file gnulib/tests/test-mbrtowc4.sh Copying file gnulib/tests/test-mbrtowc5.sh Copying file gnulib/tests/test-mbsinit.c Copying file gnulib/tests/test-mbsinit.sh Copying file gnulib/tests/test-mbsrtowcs.c Copying file gnulib/tests/test-mbsrtowcs1.sh Copying file gnulib/tests/test-mbsrtowcs2.sh Copying file gnulib/tests/test-mbsrtowcs3.sh Copying file gnulib/tests/test-mbsrtowcs4.sh Copying file gnulib/tests/test-memchr.c Copying file gnulib/tests/test-mkdir.c Copying file gnulib/tests/test-mkdir.h Copying file gnulib/tests/test-nanosleep.c Copying file gnulib/tests/test-net_if.c Copying file gnulib/tests/test-netdb.c Copying file gnulib/tests/test-netinet_in.c Copying file gnulib/tests/test-nl_langinfo.c Copying file gnulib/tests/test-nl_langinfo.sh Copying file gnulib/tests/test-nonblocking-misc.h Copying file gnulib/tests/test-nonblocking-pipe-child.c Copying file gnulib/tests/test-nonblocking-pipe-main.c Copying file gnulib/tests/test-nonblocking-pipe.h Copying file gnulib/tests/test-nonblocking-pipe.sh Copying file gnulib/tests/test-nonblocking-reader.h Copying file gnulib/tests/test-nonblocking-socket-child.c Copying file gnulib/tests/test-nonblocking-socket-main.c Copying file gnulib/tests/test-nonblocking-socket.h Copying file gnulib/tests/test-nonblocking-socket.sh Copying file gnulib/tests/test-nonblocking-writer.h Copying file gnulib/tests/test-nonblocking.c Copying file gnulib/tests/test-open.c Copying file gnulib/tests/test-open.h Copying file gnulib/tests/test-openpty.c Copying file gnulib/tests/test-passfd.c Copying file gnulib/tests/test-pathmax.c Copying file gnulib/tests/test-perror.c Copying file gnulib/tests/test-perror.sh Copying file gnulib/tests/test-perror2.c Copying file gnulib/tests/test-pipe.c Copying file gnulib/tests/test-pipe2.c Copying file gnulib/tests/test-poll-h.c Copying file gnulib/tests/test-poll.c Copying file gnulib/tests/test-posix_openpt.c Copying file gnulib/tests/test-posix_spawn1.c Copying file gnulib/tests/test-posix_spawn1.in.sh Copying file gnulib/tests/test-posix_spawn2.c Copying file gnulib/tests/test-posix_spawn2.in.sh Copying file gnulib/tests/test-posix_spawn_file_actions_addclose.c Copying file gnulib/tests/test-posix_spawn_file_actions_adddup2.c Copying file gnulib/tests/test-posix_spawn_file_actions_addopen.c Copying file gnulib/tests/test-pthread_sigmask1.c Copying file gnulib/tests/test-pthread_sigmask2.c Copying file gnulib/tests/test-ptsname.c Copying file gnulib/tests/test-ptsname_r.c Copying file gnulib/tests/test-raise.c Copying file gnulib/tests/test-rawmemchr.c Copying file gnulib/tests/test-read.c Copying file gnulib/tests/test-readlink.c Copying file gnulib/tests/test-readlink.h Copying file gnulib/tests/test-recv.c Copying file gnulib/tests/test-regex.c Copying file gnulib/tests/test-sched.c Copying file gnulib/tests/test-select-fd.c Copying file gnulib/tests/test-select-in.sh Copying file gnulib/tests/test-select-out.sh Copying file gnulib/tests/test-select-stdin.c Copying file gnulib/tests/test-select.c Copying file gnulib/tests/test-select.h Copying file gnulib/tests/test-send.c Copying file gnulib/tests/test-setenv.c Copying file gnulib/tests/test-setlocale1.c Copying file gnulib/tests/test-setlocale1.sh Copying file gnulib/tests/test-setlocale2.c Copying file gnulib/tests/test-setlocale2.sh Copying file gnulib/tests/test-setsockopt.c Copying file gnulib/tests/test-sigaction.c Copying file gnulib/tests/test-signal-h.c Copying file gnulib/tests/test-signbit.c Copying file gnulib/tests/test-sigpipe.c Copying file gnulib/tests/test-sigpipe.sh Copying file gnulib/tests/test-sigprocmask.c Copying file gnulib/tests/test-sleep.c Copying file gnulib/tests/test-snprintf.c Copying file gnulib/tests/test-sockets.c Copying file gnulib/tests/test-spawn.c Copying file gnulib/tests/test-stat-time.c Copying file gnulib/tests/test-stat.c Copying file gnulib/tests/test-stat.h Copying file gnulib/tests/test-stdalign.c Copying file gnulib/tests/test-stdbool.c Copying file gnulib/tests/test-stddef.c Copying file gnulib/tests/test-stdint.c Copying file gnulib/tests/test-stdio.c Copying file gnulib/tests/test-stdlib.c Copying file gnulib/tests/test-strchrnul.c Copying file gnulib/tests/test-strerror.c Copying file gnulib/tests/test-strerror_r.c Copying file gnulib/tests/test-string.c Copying file gnulib/tests/test-strings.c Copying file gnulib/tests/test-strnlen.c Copying file gnulib/tests/test-symlink.c Copying file gnulib/tests/test-symlink.h Copying file gnulib/tests/test-sys_ioctl.c Copying file gnulib/tests/test-sys_select.c Copying file gnulib/tests/test-sys_socket.c Copying file gnulib/tests/test-sys_stat.c Copying file gnulib/tests/test-sys_time.c Copying file gnulib/tests/test-sys_types.c Copying file gnulib/tests/test-sys_uio.c Copying file gnulib/tests/test-sys_utsname.c Copying file gnulib/tests/test-sys_wait.c Copying file gnulib/tests/test-sys_wait.h Copying file gnulib/tests/test-termios.c Copying file gnulib/tests/test-thread_create.c Copying file gnulib/tests/test-thread_self.c Copying file gnulib/tests/test-time.c Copying file gnulib/tests/test-ttyname_r.c Copying file gnulib/tests/test-uname.c Copying file gnulib/tests/test-unistd.c Copying file gnulib/tests/test-unlockpt.c Copying file gnulib/tests/test-unsetenv.c Copying file gnulib/tests/test-usleep.c Copying file gnulib/tests/test-vasnprintf.c Copying file gnulib/tests/test-vasprintf.c Copying file gnulib/tests/test-vc-list-files-cvs.sh Copying file gnulib/tests/test-vc-list-files-git.sh Copying file gnulib/tests/test-verify-try.c Copying file gnulib/tests/test-verify.c Copying file gnulib/tests/test-verify.sh Copying file gnulib/tests/test-vsnprintf.c Copying file gnulib/tests/test-wchar.c Copying file gnulib/tests/test-wcrtomb-w32-1.sh Copying file gnulib/tests/test-wcrtomb-w32-2.sh Copying file gnulib/tests/test-wcrtomb-w32-3.sh Copying file gnulib/tests/test-wcrtomb-w32-4.sh Copying file gnulib/tests/test-wcrtomb-w32-5.sh Copying file gnulib/tests/test-wcrtomb-w32.c Copying file gnulib/tests/test-wcrtomb.c Copying file gnulib/tests/test-wcrtomb.sh Copying file gnulib/tests/test-wctype-h.c Copying file gnulib/tests/test-wcwidth.c Copying file gnulib/tests/test-write.c Copying file gnulib/tests/test-xalloc-die.c Copying file gnulib/tests/test-xalloc-die.sh Copying file gnulib/tests/uniwidth/test-uc_width.c Copying file gnulib/tests/uniwidth/test-uc_width2.c Copying file gnulib/tests/uniwidth/test-uc_width2.sh Copying file gnulib/tests/unlockpt.c Copying file gnulib/tests/unused-parameter.h Copying file gnulib/tests/w32sock.h Copying file gnulib/tests/wait-process.c Copying file gnulib/tests/wait-process.h Copying file gnulib/tests/warn-on-use.h Copying file gnulib/tests/wctob.c Copying file gnulib/tests/wctomb-impl.h Copying file gnulib/tests/wctomb.c Copying file gnulib/tests/write.c Copying file gnulib/tests/xalloc-die.c Copying file gnulib/tests/xalloc.h Copying file gnulib/tests/xmalloc.c Copying file gnulib/tests/zerosize-ptr.h Copying file m4/00gnulib.m4 Copying file m4/__inline.m4 Copying file m4/absolute-header.m4 Copying file m4/alloca.m4 Copying file m4/arpa_inet_h.m4 Copying file m4/asm-underscore.m4 Copying file m4/autobuild.m4 Copying file m4/base64.m4 Copying file m4/btowc.m4 Copying file m4/builtin-expect.m4 Copying file m4/byteswap.m4 Copying file m4/calloc.m4 Copying file m4/canonicalize.m4 Copying file m4/chown.m4 Copying file m4/clock_time.m4 Copying file m4/close.m4 Copying file m4/codeset.m4 Copying file m4/configmake.m4 Copying file m4/count-leading-zeros.m4 Copying file m4/count-one-bits.m4 Copying file m4/ctype.m4 Copying file m4/dirname.m4 Copying file m4/double-slash-root.m4 Copying file m4/dup.m4 Copying file m4/dup2.m4 Copying file m4/eealloc.m4 Copying file m4/environ.m4 Copying file m4/errno_h.m4 Copying file m4/error.m4 Copying file m4/execinfo.m4 Copying file m4/exponentd.m4 Copying file m4/exponentf.m4 Copying file m4/exponentl.m4 Copying file m4/extensions.m4 Copying file m4/extern-inline.m4 Copying file m4/fatal-signal.m4 Copying file m4/fclose.m4 Copying file m4/fcntl-o.m4 Copying file m4/fcntl.m4 Copying file m4/fcntl_h.m4 Copying file m4/fdatasync.m4 Copying file m4/fdopen.m4 Copying file m4/fflush.m4 Copying file m4/ffs.m4 Copying file m4/ffsl.m4 Copying file m4/flexmember.m4 Copying file m4/float_h.m4 Copying file m4/fnmatch.m4 Copying file m4/fnmatch_h.m4 Copying file m4/fpieee.m4 Copying file m4/fpurge.m4 Copying file m4/freading.m4 Copying file m4/fseek.m4 Copying file m4/fseeko.m4 Copying file m4/fstat.m4 Copying file m4/fsync.m4 Copying file m4/ftell.m4 Copying file m4/ftello.m4 Copying file m4/ftruncate.m4 Copying file m4/func.m4 Copying file m4/getaddrinfo.m4 Copying file m4/getcwd.m4 Copying file m4/getdelim.m4 Copying file m4/getdtablesize.m4 Copying file m4/getgroups.m4 Copying file m4/gethostname.m4 Copying file m4/getline.m4 Copying file m4/getopt.m4 Copying file m4/getpagesize.m4 Copying file m4/getpass.m4 Copying file m4/getprogname.m4 Copying file m4/gettimeofday.m4 Copying file m4/getugroups.m4 Copying file m4/glibc21.m4 Copying file m4/gnulib-common.m4 Copying file m4/gnulib-tool.m4 Copying file m4/grantpt.m4 Copying file m4/host-cpu-c-abi.m4 Copying file m4/hostent.m4 Copying file m4/include_next.m4 Copying file m4/inet_ntop.m4 Copying file m4/inet_pton.m4 Copying file m4/intl-thread-locale.m4 Copying file m4/intlmacosx.m4 Copying file m4/intmax_t.m4 Copying file m4/inttypes-pri.m4 Copying file m4/inttypes.m4 Copying file m4/inttypes_h.m4 Copying file m4/ioctl.m4 Copying file m4/isatty.m4 Copying file m4/isblank.m4 Copying file m4/isnand.m4 Copying file m4/isnanf.m4 Copying file m4/isnanl.m4 Copying file m4/langinfo_h.m4 Copying file m4/largefile.m4 Copying file m4/lcmessage.m4 Copying file m4/ldexp.m4 Copying file m4/lib-ld.m4 Copying file m4/lib-link.m4 Copying file m4/lib-prefix.m4 Copying file m4/libunistring-base.m4 Copying file m4/limits-h.m4 Copying file m4/localcharset.m4 Copying file m4/locale-fr.m4 Copying file m4/locale-ja.m4 Copying file m4/locale-tr.m4 Copying file m4/locale-zh.m4 Copying file m4/locale_h.m4 Copying file m4/localeconv.m4 Copying file m4/localename.m4 Copying file m4/localtime-buffer.m4 Copying file m4/lock.m4 Copying file m4/longlong.m4 Copying file m4/lseek.m4 Copying file m4/lstat.m4 Copying file m4/malloc.m4 Copying file m4/malloca.m4 Copying file m4/manywarnings-c++.m4 Copying file m4/manywarnings.m4 Copying file m4/math_h.m4 Copying file m4/mbrtowc.m4 Copying file m4/mbsinit.m4 Copying file m4/mbsrtowcs.m4 Copying file m4/mbstate_t.m4 Copying file m4/mbtowc.m4 Copying file m4/memchr.m4 Copying file m4/mgetgroups.m4 Copying file m4/mkdir.m4 Copying file m4/mkdtemp.m4 Copying file m4/mkostemp.m4 Copying file m4/mkostemps.m4 Copying file m4/mktime.m4 Copying file m4/mmap-anon.m4 Copying file m4/mode_t.m4 Copying file m4/msvc-inval.m4 Copying file m4/msvc-nothrow.m4 Copying file m4/multiarch.m4 Copying file m4/nanosleep.m4 Copying file m4/net_if_h.m4 Copying file m4/netdb_h.m4 Copying file m4/netinet_in_h.m4 Copying file m4/nl_langinfo.m4 Copying file m4/nocrash.m4 Copying file m4/nonblocking.m4 Copying file m4/off_t.m4 Copying file m4/open-cloexec.m4 Copying file m4/open.m4 Copying file m4/passfd.m4 Copying file m4/pathmax.m4 Copying file m4/perror.m4 Copying file m4/physmem.m4 Copying file m4/pipe.m4 Copying file m4/pipe2.m4 Copying file m4/poll.m4 Copying file m4/poll_h.m4 Copying file m4/posix-shell.m4 Copying file m4/posix_openpt.m4 Copying file m4/posix_spawn.m4 Copying file m4/printf.m4 Copying file m4/pthread.m4 Copying file m4/pthread_rwlock_rdlock.m4 Copying file m4/pthread_sigmask.m4 Copying file m4/ptsname.m4 Copying file m4/ptsname_r.m4 Copying file m4/pty.m4 Copying file m4/pty_h.m4 Copying file m4/putenv.m4 Copying file m4/raise.m4 Copying file m4/rawmemchr.m4 Copying file m4/read.m4 Copying file m4/readlink.m4 Copying file m4/realloc.m4 Copying file m4/regex.m4 Copying file m4/sched_h.m4 Copying file m4/secure_getenv.m4 Copying file m4/select.m4 Copying file m4/servent.m4 Copying file m4/setenv.m4 Copying file m4/setlocale.m4 Copying file m4/sh-filename.m4 Copying file m4/sig_atomic_t.m4 Copying file m4/sigaction.m4 Copying file m4/signal_h.m4 Copying file m4/signalblocking.m4 Copying file m4/signbit.m4 Copying file m4/sigpipe.m4 Copying file m4/size_max.m4 Copying file m4/sleep.m4 Copying file m4/snprintf.m4 Copying file m4/socketlib.m4 Copying file m4/sockets.m4 Copying file m4/socklen.m4 Copying file m4/sockpfaf.m4 Copying file m4/spawn_h.m4 Copying file m4/ssize_t.m4 Copying file m4/stat-time.m4 Copying file m4/stat.m4 Copying file m4/stdalign.m4 Copying file m4/stdarg.m4 Copying file m4/stdbool.m4 Copying file m4/stddef_h.m4 Copying file m4/stdint.m4 Copying file m4/stdint_h.m4 Copying file m4/stdio_h.m4 Copying file m4/stdlib_h.m4 Copying file m4/stpcpy.m4 Copying file m4/strcase.m4 Copying file m4/strchrnul.m4 Copying file m4/strdup.m4 Copying file m4/strerror.m4 Copying file m4/strerror_r.m4 Copying file m4/string_h.m4 Copying file m4/strings_h.m4 Copying file m4/strndup.m4 Copying file m4/strnlen.m4 Copying file m4/strptime.m4 Copying file m4/strsep.m4 Copying file m4/strtok_r.m4 Copying file m4/symlink.m4 Copying file m4/sys_ioctl_h.m4 Copying file m4/sys_select_h.m4 Copying file m4/sys_socket_h.m4 Copying file m4/sys_stat_h.m4 Copying file m4/sys_time_h.m4 Copying file m4/sys_types_h.m4 Copying file m4/sys_uio_h.m4 Copying file m4/sys_utsname_h.m4 Copying file m4/sys_wait_h.m4 Copying file m4/tempname.m4 Copying file m4/termios_h.m4 Copying file m4/thread.m4 Copying file m4/threadlib.m4 Copying file m4/time_h.m4 Copying file m4/time_r.m4 Copying file m4/timegm.m4 Copying file m4/tm_gmtoff.m4 Copying file m4/ttyname_r.m4 Copying file m4/uname.m4 Copying file m4/ungetc.m4 Copying file m4/unistd_h.m4 Copying file m4/unlockpt.m4 Copying file m4/usleep.m4 Copying file m4/vasnprintf.m4 Copying file m4/vasprintf.m4 Copying file m4/vsnprintf.m4 Copying file m4/wait-process.m4 Copying file m4/waitpid.m4 Copying file m4/warn-on-use.m4 Copying file m4/warnings.m4 Copying file m4/wchar_h.m4 Copying file m4/wchar_t.m4 Copying file m4/wcrtomb.m4 Copying file m4/wctob.m4 Copying file m4/wctomb.m4 Copying file m4/wctype_h.m4 Copying file m4/wcwidth.m4 Copying file m4/wint_t.m4 Copying file m4/write.m4 Copying file m4/xalloc.m4 Copying file m4/xsize.m4 Copying file maint.mk Creating gnulib/lib/gnulib.mk Creating m4/gnulib-cache.m4 Creating m4/gnulib-comp.m4 Creating gnulib/tests/gnulib.mk Updating ./build-aux/.gitignore (backup in ./build-aux/.gitignore~) Creating ./gnulib/lib/.gitignore Creating ./gnulib/lib/glthread/.gitignore Creating ./gnulib/lib/uniwidth/.gitignore Creating ./gnulib/tests/.gitignore Creating ./gnulib/tests/glthread/.gitignore Creating ./gnulib/tests/uniwidth/.gitignore Updating ./m4/.gitignore (backup in ./m4/.gitignore~) Finished.
You may need to add #include directives for the following .h files. #include <arpa/inet.h> #include <byteswap.h> #include <execinfo.h> #include <fcntl.h> #include <fnmatch.h> #include <locale.h> #include <math.h> #include <net/if.h> #include <netdb.h> #include <poll.h> #include <pthread.h> #include <pty.h> #include <regex.h> #include <sched.h> #include <signal.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/utsname.h> #include <sys/wait.h> #include <termios.h> #include <time.h> #include <unistd,h> #include <unistd.h> #include <wchar.h> /* Include only after all system include files. */ #include "areadlink.h" #include "base64.h" #include "bitrotate.h" #include "c-ctype.h" #include "c-strcase.h" #include "c-strcasestr.h" #include "configmake.h" #include "count-leading-zeros.h" #include "count-one-bits.h" #include "dirname.h" #include "ignore-value.h" #include "intprops.h" #include "mgetgroups.h" #include "nonblocking.h" #include "passfd.h" #include "physmem.h" #include "stat-time.h" #include "verify.h"
You may need to use the following Makefile variables when linking. Use them in <program>_LDADD when linking a program, or in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library. $(GETADDRINFO_LIB) $(GETHOSTNAME_LIB) $(HOSTENT_LIB) $(INET_NTOP_LIB) $(INET_PTON_LIB) $(LDEXP_LIBM) $(LIBSOCKET) $(LIB_CLOCK_GETTIME) $(LIB_EXECINFO) $(LIB_FDATASYNC) $(LIB_POLL) $(LIB_PTHREAD) $(LIB_PTHREAD_SIGMASK) $(LIB_SELECT) $(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise $(LTLIBTHREAD) when linking with libtool, $(LIBTHREAD) otherwise $(PTY_LIB) $(SERVENT_LIB)
Don't forget to - "include gnulib.mk" from within "gnulib/lib/Makefile.am", - "include gnulib.mk" from within "gnulib/tests/Makefile.am", - mention "-I m4" in ACLOCAL_AMFLAGS in Makefile.am, - mention "m4/gnulib-cache.m4" in EXTRA_DIST in Makefile.am, - invoke gl_EARLY in ./configure.ac, right after AC_PROG_CC, - invoke gl_INIT in ./configure.ac. running: AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install --force -I m4 --no-recursive autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal -I m4 --force -I m4 autoreconf: configure.ac: tracing autoreconf: running: true --copy --force autoreconf: running: /usr/bin/autoconf --include=m4 --force autoreconf: running: /usr/bin/autoheader --include=m4 --force autoreconf: running: automake --add-missing --copy --force-missing configure.ac:126: installing 'build-aux/compile' configure.ac:27: installing 'build-aux/missing' Makefile.am: installing './INSTALL' examples/Makefile.am: installing 'build-aux/depcomp' parallel-tests: installing 'build-aux/test-driver' autoreconf: Leaving directory `.' ./bootstrap: ln -fs ../.gnulib/build-aux/install-sh build-aux/install-sh ./bootstrap: ln -fs ../.gnulib/build-aux/depcomp build-aux/depcomp ./bootstrap: ln -fs ../.gnulib/build-aux/config.guess build-aux/config.guess ./bootstrap: ln -fs ../.gnulib/build-aux/config.sub build-aux/config.sub ./bootstrap: ln -fs .gnulib/doc/INSTALL INSTALL ./bootstrap: done. Now you can run './configure'. I am going to run configure with no arguments - if you wish to pass any to it, please specify them on the ./autogen.sh command line. checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking how to create a pax tar archive... gnutar checking whether make supports nested variables... (cached) yes checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for Minix Amsterdam compiler... no checking for ar... ar checking for ranlib... ranlib checking whether gcc and cc understand -c and -o together... yes checking for _LARGEFILE_SOURCE value needed for large files... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for gcc option to accept ISO C99... -std=gnu99 checking for gcc -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99 configure: autobuild project... libvirt configure: autobuild revision... v2.1.0-rc1-8457-g83b62e4 configure: autobuild hostname... virtlab205.virt.lab.eng.bos.redhat.com configure: autobuild timestamp... 20190304T092411Z checking for sys/socket.h... yes checking for arpa/inet.h... yes checking for features.h... yes checking for sys/param.h... yes checking for unistd.h... (cached) yes checking for execinfo.h... yes checking for fnmatch.h... yes checking for wctype.h... yes checking for sys/stat.h... (cached) yes checking for netdb.h... yes checking for netinet/in.h... yes checking for getopt.h... yes checking for sys/cdefs.h... yes checking for stdio_ext.h... yes checking for termios.h... yes checking for sys/time.h... yes checking for grp.h... yes checking for langinfo.h... yes checking for limits.h... yes checking for xlocale.h... yes checking for sys/mman.h... yes checking for pty.h... yes checking for poll.h... yes checking for sys/ioctl.h... yes checking for sys/filio.h... no checking for pthread.h... yes checking for malloc.h... yes checking for sys/select.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for strings.h... (cached) yes checking for sys/uio.h... yes checking for sys/utsname.h... yes checking for sys/wait.h... yes checking for crtdefs.h... no checking for inttypes.h... (cached) yes checking for math.h... yes checking for sys/types.h... (cached) yes checking for spawn.h... yes checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether <sys/socket.h> is self-contained... yes checking for shutdown... yes checking whether <sys/socket.h> defines the SHUT_* macros... yes checking for struct sockaddr_storage... yes checking for sa_family_t... yes checking for struct sockaddr_storage.ss_family... yes checking for size_t... yes checking for working alloca.h... yes checking for alloca... yes checking for C/C++ restrict keyword... __restrict checking whether <wchar.h> uses 'inline' correctly... yes checking for btowc... yes checking for canonicalize_file_name... yes checking for getcwd... yes checking for readlink... yes checking for realpath... yes checking for readlinkat... yes checking for chown... yes checking for fchown... yes checking for _set_invalid_parameter_handler... no checking for fcntl... yes checking for symlink... yes checking for ffsl... yes checking for fnmatch... yes checking for isblank... yes checking for iswctype... yes checking for mbsrtowcs... yes checking for mempcpy... yes checking for wmemchr... yes checking for wmemcpy... yes checking for wmempcpy... yes checking for fpurge... no checking for __fpurge... yes checking for __freading... yes checking for fsync... yes checking for getdelim... yes checking for getdtablesize... yes checking for getpass... yes checking for __fsetlocking... yes checking for gettimeofday... yes checking for lstat... yes checking for mbsinit... yes checking for mbrtowc... yes checking for mprotect... yes checking for getgrouplist... yes checking for mkostemp... yes checking for mkostemps... yes checking for tzset... yes checking for nl_langinfo... yes checking for recvmsg... yes checking for sendmsg... yes checking for strerror_r... yes checking for __xpg_strerror_r... yes checking for pipe... yes checking for pipe2... yes checking for posix_openpt... yes checking for pthread_sigmask... no checking for secure_getenv... yes checking for getuid... yes checking for geteuid... yes checking for getgid... yes checking for getegid... yes checking for setenv... yes checking for sigaction... yes checking for sigaltstack... yes checking for siginterrupt... yes checking for sleep... yes checking for snprintf... yes checking for strdup... yes checking for catgets... yes checking for strndup... yes checking for strptime... yes checking for localtime_r... yes checking for timegm... yes checking for usleep... yes checking for vasnprintf... no checking for wcrtomb... yes checking for iswcntrl... yes checking for wcwidth... yes checking for ftruncate... yes checking for getprogname... no checking for getexecname... no checking for newlocale... yes checking for uselocale... yes checking for duplocale... yes checking for freelocale... yes checking for socketpair... yes checking for ptsname_r... yes checking for shutdown... (cached) yes checking for wctob... yes checking for cfmakeraw... yes checking for fallocate... yes checking for getifaddrs... yes checking for getmntent_r... yes checking for getpwuid_r... yes checking for getrlimit... yes checking for if_indextoname... yes checking for mmap... yes checking for posix_fallocate... yes checking for posix_memalign... yes checking for prlimit... yes checking for sched_getaffinity... yes checking for sched_setscheduler... yes checking for setgroups... yes checking for setns... yes checking for setrlimit... yes checking for sysctlbyname... no checking for unshare... yes checking for nl_langinfo and CODESET... yes checking for a traditional french locale... fr_FR checking whether malloc, realloc, calloc are POSIX compliant... yes checking whether // is distinct from /... no checking whether realpath works... yes checking for uid_t in sys/types.h... yes checking for unistd.h... (cached) yes checking for working chown... yes checking whether chown dereferences symlinks... yes checking whether chown honors trailing slash... yes checking whether chown always updates ctime... yes checking for unsigned long long int... yes checking if environ is properly declared... yes checking for complete errno.h... yes checking for working fcntl.h... yes checking for pid_t... yes checking for mode_t... yes checking whether fdatasync is declared... yes checking for mbstate_t... yes checking whether stdin defaults to large file offsets... yes checking whether fseeko is declared... yes checking for fseeko... yes checking whether fflush works on input streams... no checking whether stat file-mode macros are broken... no checking for nlink_t... yes checking whether ftello is declared... yes checking for ftello... yes checking whether ftello works... yes checking for library containing gethostbyname... none required checking for gethostbyname... yes checking for library containing getservbyname... none required checking for getservbyname... yes checking for library containing inet_ntop... none required checking whether inet_ntop is declared... yes checking for IPv4 sockets... yes checking for IPv6 sockets... yes checking whether getcwd (NULL, 0) allocates memory for result... yes checking for getcwd with POSIX signature... yes checking whether getdelim is declared... yes checking whether getdtablesize is declared... yes checking type of array argument to getgroups... gid_t checking whether getline is declared... yes checking whether getopt is POSIX compatible... yes checking whether fflush_unlocked is declared... yes checking whether flockfile is declared... yes checking whether fputs_unlocked is declared... yes checking whether funlockfile is declared... yes checking whether putc_unlocked is declared... yes checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether ldexp() can be used without linking with libm... yes checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... no checking for wchar_t... yes checking for good max_align_t... no checking whether NULL can be used in arbitrary expressions... yes checking for ld used by gcc -std=gnu99... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for shared library run path origin... done checking 32-bit host C ABI... no checking for the common suffixes of directories in the library search path... lib64,lib64 checking whether imported symbols can be declared weak... yes checking whether the linker supports --as-needed... yes checking whether the linker supports --push-state... yes checking for pthread.h... (cached) yes checking for multithread API to use... posix checking whether lstat correctly handles trailing slash... yes checking for a sed that does not truncate output... /usr/bin/sed checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for long long int... yes checking for a traditional japanese locale... ja_JP checking for a transitional chinese locale... zh_CN.GB18030 checking for a french Unicode locale... fr_FR.UTF-8 checking for inline... inline checking for mmap... (cached) yes checking for MAP_ANONYMOUS... yes checking whether memchr works... yes checking whether time_t is signed... yes checking whether alarm is declared... yes checking for working mktime... yes checking whether C symbols are prefixed with underscore at the linker level... no checking for O_CLOEXEC... yes checking for promoted mode_t type... mode_t checking for library containing forkpty... -lutil checking whether strerror(0) succeeds... yes checking for strerror_r with POSIX signature... no checking whether __xpg_strerror_r works... yes checking whether strerror_r is declared... yes checking for external symbol _system_configuration... no checking for library containing setsockopt... none needed checking for sigset_t... yes checking for SIGPIPE... yes checking whether we are using the GNU C Library >= 2.1 or uClibc... yes checking whether <sys/select.h> is self-contained... yes checking whether setenv is declared... yes checking search.h usability... yes checking search.h presence... yes checking for search.h... yes checking for tsearch... yes checking whether snprintf returns a byte count as in C99... yes checking whether snprintf is declared... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for wint_t... yes checking whether wint_t is too small... no checking whether stdint.h conforms to C99... yes checking whether stdint.h predates C++11... no checking whether stdint.h has UINTMAX_WIDTH etc.... no checking whether strdup is declared... yes checking whether strndup is declared... yes checking whether strnlen is declared... yes checking for struct tm.tm_gmtoff... yes checking whether strtok_r is declared... yes checking for struct timespec in <time.h>... yes checking whether ttyname_r is declared... yes checking whether unsetenv is declared... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking where to find the exponent in a 'double'... word 1 bit 20 checking for snprintf... (cached) yes checking for strnlen... yes checking for wcslen... yes checking for wcsnlen... yes checking for mbrtowc... (cached) yes checking for wcrtomb... (cached) yes checking whether _snprintf is declared... no checking whether vsnprintf is declared... yes checking whether strerror_r is declared... (cached) yes checking for strerror_r... (cached) yes checking whether strerror_r returns char *... yes checking for sig_atomic_t... yes checking whether ungetc works on arbitrary bytes... yes checking for inttypes.h... (cached) yes checking whether the inttypes.h PRIxNN macros are broken... no checking where to find the exponent in a 'float'... word 0 bit 23 checking whether byte ordering is bigendian... no checking whether long double and double are the same... no checking for LC_MESSAGES... yes checking whether uselocale works... yes checking for fake locale system (OpenBSD)... no checking for Solaris 11.4 locale system... no checking for getlocalename_l... no checking for CFPreferencesCopyAppValue... no checking for CFLocaleCopyCurrent... no checking for CFLocaleCopyPreferredLanguages... no checking for library containing posix_spawn... none required checking for posix_spawn... yes checking whether posix_spawn works... yes checking whether posix_spawnattr_setschedpolicy is supported... yes checking whether posix_spawnattr_setschedparam is supported... yes checking sys/mkdev.h usability... no checking sys/mkdev.h presence... no checking for sys/mkdev.h... no checking sys/sysmacros.h usability... yes checking sys/sysmacros.h presence... yes checking for sys/sysmacros.h... yes checking for alloca as a compiler built-in... yes checking whether btowc(0) is correct... yes checking whether btowc(EOF) is correct... yes checking for __builtin_expect... yes checking byteswap.h usability... yes checking byteswap.h presence... yes checking for byteswap.h... yes checking for library containing clock_gettime... none required checking for clock_gettime... yes checking for clock_settime... yes checking whether // is distinct from /... (cached) no checking whether dup2 works... yes checking for library containing backtrace_symbols_fd... none required checking whether fflush works on input streams... (cached) no checking whether fcntl handles F_DUPFD correctly... yes checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check checking for library containing fdatasync... none required checking whether fflush works on input streams... (cached) no checking for ffs... yes checking for flexible array member... yes checking whether conversion from 'int' to 'long double' works... yes checking for working POSIX fnmatch... yes checking whether fpurge is declared... no checking for fseeko... (cached) yes checking whether fflush works on input streams... (cached) no checking for _fseeki64... no checking for ftello... (cached) yes checking whether ftello works... (cached) yes checking whether __func__ is available... yes checking how to do getaddrinfo, freeaddrinfo and getnameinfo... checking for library containing getaddrinfo... none required checking for getaddrinfo... yes checking whether gai_strerror is declared... yes checking whether gai_strerrorA is declared... no checking for gai_strerror with POSIX signature... yes checking for struct sockaddr.sa_len... no checking whether getaddrinfo is declared... yes checking whether freeaddrinfo is declared... yes checking whether getnameinfo is declared... yes checking for struct addrinfo... yes checking for working getdelim function... yes checking whether getdtablesize works... yes checking for getgroups... yes checking for working getgroups... yes checking whether getgroups handles negative values... yes checking for gethostname... yes checking for HOST_NAME_MAX... yes checking for getline... yes checking for working getline function... yes checking whether gettimeofday clobbers localtime buffer... no checking for gettimeofday with POSIX signature... almost checking for library containing gethostbyname... (cached) none required checking for gethostbyname... (cached) yes checking for library containing inet_ntop... (cached) none required checking whether inet_ntop is declared... (cached) yes checking for library containing inet_pton... none required checking whether inet_pton is declared... yes checking for ioctl... yes checking for ioctl with POSIX signature... no checking whether langinfo.h defines CODESET... yes checking whether langinfo.h defines T_FMT_AMPM... yes checking whether langinfo.h defines ALTMON_1... no checking whether langinfo.h defines ERA... yes checking whether langinfo.h defines YESEXPR... yes checking whether the compiler supports the __inline keyword... yes checking whether locale.h conforms to POSIX:2001... yes checking whether locale.h defines locale_t... yes checking whether struct lconv is properly defined... yes checking for pthread_rwlock_t... yes checking whether pthread_rwlock_rdlock prefers a writer to a reader... no checking whether lseek detects pipes... yes checking whether mbrtowc handles incomplete characters... yes checking whether mbrtowc works as well as mbtowc... yes checking whether mbrtowc handles a NULL pwc argument... yes checking whether mbrtowc handles a NULL string argument... yes checking whether mbrtowc has a correct return value... yes checking whether mbrtowc returns 0 when parsing a NUL character... yes checking whether mbrtowc works on empty input... no checking whether the C locale is free of encoding errors... no checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether mbsrtowcs works... yes checking whether mkdir handles trailing slash... yes checking whether mkdir handles trailing dot... yes checking for mkdtemp... yes checking for __mktime_internal... no checking whether <net/if.h> is self-contained... yes checking whether <netinet/in.h> is self-contained... yes checking whether YESEXPR works... yes checking whether open recognizes a trailing slash... yes checking whether openpty is declared... yes checking for const-safe openpty signature... yes checking for struct msghdr.msg_accrights... no checking whether perror matches strerror... yes checking for sys/pstat.h... no checking for sys/sysmp.h... no checking for sys/sysinfo.h... yes checking for machine/hal_sysinfo.h... no checking for sys/table.h... no checking for sys/param.h... (cached) yes checking for sys/systemcfg.h... no checking for sys/sysctl.h... yes checking for pstat_getstatic... no checking for pstat_getdynamic... no checking for sysmp... no checking for getsysinfo... no checking for sysctl... yes checking for table... no checking for sysinfo... yes checking for struct sysinfo.mem_unit... yes checking for poll... yes checking for a shell that conforms to POSIX... /bin/sh checking whether <pthread.h> pollutes the namespace... no checking for pthread_t... yes checking for pthread_spinlock_t... yes checking for library containing pthread_create and pthread_join... -pthread checking for pthread_sigmask in -pthread -Wl,--push-state -Wl,--no-as-needed -lpthread -Wl,--pop-state... yes checking whether pthread_sigmask is only a macro... no checking whether pthread_sigmask returns error numbers... yes checking whether pthread_sigmask unblocks signals correctly... guessing yes checking for raise... yes checking for sigprocmask... yes checking for rawmemchr... yes checking whether readlink signature is correct... yes checking whether readlink handles trailing slash correctly... yes checking for working re_compile_pattern... no checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking whether isblank is declared... yes checking whether select supports a 0 argument... yes checking whether select detects invalid fds... yes checking for library containing getservbyname... (cached) none required checking for getservbyname... (cached) yes checking whether setenv validates arguments... yes checking for struct sigaction.sa_sigaction... yes checking for volatile sig_atomic_t... yes checking for sighandler_t... yes checking for sigprocmask... (cached) yes checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking whether sleep is declared... yes checking for working sleep... yes checking for snprintf... (cached) yes checking whether snprintf respects a size of 1... yes checking whether printf supports POSIX/XSI format strings with positions... yes checking for socklen_t... yes checking for ssize_t... yes checking whether stat handles trailing slashes on files... yes checking for struct stat.st_atim.tv_nsec... yes checking whether struct stat.st_atim is of type struct timespec... yes checking for struct stat.st_birthtimespec.tv_nsec... no checking for struct stat.st_birthtimensec... no checking for struct stat.st_birthtim.tv_nsec... no checking for working stdalign.h... yes checking for va_copy... yes checking for good max_align_t... (cached) no checking whether NULL can be used in arbitrary expressions... (cached) yes checking which flavor of printf attribute matches inttypes macros... system checking for stpcpy... yes checking for strcasecmp... yes checking for strncasecmp... yes checking whether strncasecmp is declared... yes checking for strchrnul... yes checking whether strchrnul works... yes checking for working strerror function... yes checking for working strndup... yes checking for working strnlen... yes checking for strsep... yes checking for strtok_r... yes checking whether strtok_r works... yes checking whether <sys/ioctl.h> declares ioctl... yes checking for nlink_t... (cached) yes checking for struct utsname... yes checking whether localtime_r is declared... yes checking whether localtime_r is compatible with its POSIX signature... yes checking for ttyname_r... yes checking whether ttyname_r is compatible with its POSIX signature... yes checking whether ttyname_r works with small buffers... yes checking for uname... yes checking for unsetenv... yes checking for unsetenv() return type... int checking whether unsetenv obeys POSIX... yes checking for useconds_t... yes checking whether usleep allows large arguments... yes checking for ptrdiff_t... yes checking for vasprintf... yes checking for vsnprintf... yes checking whether snprintf respects a size of 1... (cached) yes checking whether printf supports POSIX/XSI format strings with positions... (cached) yes checking whether mbrtowc handles incomplete characters... (cached) yes checking whether mbrtowc works as well as mbtowc... (cached) yes checking whether wcrtomb return value is correct... yes checking whether iswcntrl works... yes checking for towlower... yes checking for wctype_t... yes checking for wctrans_t... yes checking whether wcwidth is declared... yes checking whether wcwidth works reasonably in UTF-8 locales... yes checking for stdint.h... (cached) yes checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional french locale... (cached) fr_FR checking for a turkish Unicode locale... tr_TR.UTF-8 checking whether dup works... yes checking for error_at_line... yes checking whether fdopen sets errno... yes checking for getpagesize... yes checking whether getpagesize is declared... yes checking whether program_invocation_name is declared... yes checking whether program_invocation_short_name is declared... yes checking whether __argv is declared... no checking for grantpt... yes checking whether byte ordering is bigendian... (cached) no checking whether byte ordering is bigendian... (cached) no checking whether INT32_MAX < INTMAX_MAX... yes checking whether INT64_MAX == LONG_MAX... yes checking whether UINT32_MAX < UINTMAX_MAX... yes checking whether UINT64_MAX == ULONG_MAX... yes checking whether isnan(double) can be used without linking with libm... yes checking where to find the exponent in a 'double'... (cached) word 1 bit 20 checking whether isnan(float) can be used without linking with libm... yes checking whether isnan(float) works... yes checking where to find the exponent in a 'float'... (cached) word 0 bit 23 checking whether isnan(long double) can be used without linking with libm... yes checking whether isnanl works... yes checking where to find the exponent in a 'long double'... word 2 bit 0 checking whether NAN macro works... yes checking whether HUGE_VAL works... yes checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) ja_JP checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) ja_JP checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for mmap... (cached) yes checking for MAP_ANONYMOUS... yes checking for library containing nanosleep... none required checking for working nanosleep... no (mishandles large arguments) checking for library containing if_nameindex... none required checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking whether posix_spawn_file_actions_addclose works... yes checking whether posix_spawn_file_actions_adddup2 works... yes checking whether posix_spawn_file_actions_addopen works... yes checking for ptsname... yes checking whether ptsname sets errno on failure... yes checking whether ptsname_r has the same signature as in glibc... yes checking for putenv compatible with GNU and SVID... yes checking for mmap... (cached) yes checking for MAP_ANONYMOUS... yes checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) ja_JP checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking for signbit macro... yes checking for signbit compiler built-ins... yes checking for posix_spawnattr_t... yes checking for posix_spawn_file_actions_t... yes checking for mmap... (cached) yes checking for MAP_ANONYMOUS... yes checking whether symlink handles trailing slash correctly... yes checking for pthread_atfork... yes checking for unlockpt... yes checking for waitid... yes checking for a traditional french locale... (cached) fr_FR checking for a french Unicode locale... (cached) fr_FR.UTF-8 checking for a traditional japanese locale... (cached) ja_JP checking for a transitional chinese locale... (cached) zh_CN.GB18030 checking whether wctob works... yes checking whether wctob is declared... yes checking for uid_t in sys/types.h... (cached) yes checking for sys/mkdev.h... (cached) no checking for sys/sysmacros.h... (cached) yes checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by gcc -std=gnu99... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions... no checking for gcc -std=gnu99 option to produce PIC... -fPIC -DPIC checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works... yes checking if gcc -std=gnu99 static flag -static works... no checking if gcc -std=gnu99 supports -c -o file.o... yes checking if gcc -std=gnu99 supports -c -o file.o... (cached) yes checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for ld used by gcc -std=gnu99... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for how to mark DSO non-deletable at runtime... -Wl,-z -Wl,nodelete checking for how to set DSO symbol versions... -Wl,--version-script= checking whether C compiler handles -Werror -Wunknown-warning-option... no checking whether the C compiler's -Wformat allows NULL strings... yes checking whether pragma GCC diagnostic push works... yes checking whether the C compiler's -Wlogical-op gives bogus warnings... no checking whether gcc gives bogus warnings for -Wlogical-op... no checking whether clang gives bogus warnings for -Wdouble-promotion... no checking whether -Wno-missing-field-initializers is supported... yes checking whether -Wno-missing-field-initializers is needed... no checking whether -Wuninitialized is supported... yes checking max safe object size... 9223372036854775807 checking whether C compiler handles -Wframe-larger-than=4096... yes checking whether C compiler handles -Wframe-larger-than=32768... yes checking whether C compiler handles -fno-common... yes checking whether C compiler handles -W... yes checking whether C compiler handles -Waddress... yes checking whether C compiler handles -Waggressive-loop-optimizations... yes checking whether C compiler handles -Wall... yes checking whether C compiler handles -Wattribute-alias... no checking whether C compiler handles -Wattributes... yes checking whether C compiler handles -Wbad-function-cast... yes checking whether C compiler handles -Wbool-compare... no checking whether C compiler handles -Wbool-operation... no checking whether C compiler handles -Wbuiltin-declaration-mismatch... no checking whether C compiler handles -Wbuiltin-macro-redefined... yes checking whether C compiler handles -Wcast-align... yes checking whether C compiler handles -Wcast-align=strict... no checking whether C compiler handles -Wcast-function-type... no checking whether C compiler handles -Wchar-subscripts... yes checking whether C compiler handles -Wclobbered... yes checking whether C compiler handles -Wcomment... yes checking whether C compiler handles -Wcomments... yes checking whether C compiler handles -Wcoverage-mismatch... yes checking whether C compiler handles -Wcpp... yes checking whether C compiler handles -Wdangling-else... no checking whether C compiler handles -Wdate-time... no checking whether C compiler handles -Wdeprecated-declarations... yes checking whether C compiler handles -Wdesignated-init... no checking whether C compiler handles -Wdiscarded-array-qualifiers... no checking whether C compiler handles -Wdiscarded-qualifiers... no checking whether C compiler handles -Wdiv-by-zero... yes checking whether C compiler handles -Wdouble-promotion... yes checking whether C compiler handles -Wduplicated-cond... no checking whether C compiler handles -Wduplicate-decl-specifier... no checking whether C compiler handles -Wempty-body... yes checking whether C compiler handles -Wendif-labels... yes checking whether C compiler handles -Wexpansion-to-defined... no checking whether C compiler handles -Wextra... yes checking whether C compiler handles -Wformat-contains-nul... yes checking whether C compiler handles -Wformat-extra-args... yes checking whether C compiler handles -Wformat-security... yes checking whether C compiler handles -Wformat-y2k... yes checking whether C compiler handles -Wformat-zero-length... yes checking whether C compiler handles -Wframe-address... no checking whether C compiler handles -Wfree-nonheap-object... yes checking whether C compiler handles -Whsa... no checking whether C compiler handles -Wif-not-aligned... no checking whether C compiler handles -Wignored-attributes... no checking whether C compiler handles -Wignored-qualifiers... yes checking whether C compiler handles -Wimplicit... yes checking whether C compiler handles -Wimplicit-function-declaration... yes checking whether C compiler handles -Wimplicit-int... yes checking whether C compiler handles -Wincompatible-pointer-types... no checking whether C compiler handles -Winit-self... yes checking whether C compiler handles -Winline... yes checking whether C compiler handles -Wint-conversion... no checking whether C compiler handles -Wint-in-bool-context... no checking whether C compiler handles -Wint-to-pointer-cast... yes checking whether C compiler handles -Winvalid-memory-model... yes checking whether C compiler handles -Winvalid-pch... yes checking whether C compiler handles -Wlogical-not-parentheses... no checking whether C compiler handles -Wlogical-op... yes checking whether C compiler handles -Wmain... yes checking whether C compiler handles -Wmaybe-uninitialized... yes checking whether C compiler handles -Wmemset-elt-size... no checking whether C compiler handles -Wmemset-transposed-args... no checking whether C compiler handles -Wmisleading-indentation... no checking whether C compiler handles -Wmissing-attributes... no checking whether C compiler handles -Wmissing-braces... yes checking whether C compiler handles -Wmissing-declarations... yes checking whether C compiler handles -Wmissing-field-initializers... yes checking whether C compiler handles -Wmissing-include-dirs... yes checking whether C compiler handles -Wmissing-parameter-type... yes checking whether C compiler handles -Wmissing-prototypes... yes checking whether C compiler handles -Wmultichar... yes checking whether C compiler handles -Wmultistatement-macros... no checking whether C compiler handles -Wnarrowing... yes checking whether C compiler handles -Wnested-externs... yes checking whether C compiler handles -Wnonnull... yes checking whether C compiler handles -Wnonnull-compare... no checking whether C compiler handles -Wnull-dereference... no checking whether C compiler handles -Wodr... no checking whether C compiler handles -Wold-style-declaration... yes checking whether C compiler handles -Wold-style-definition... yes checking whether C compiler handles -Wopenmp-simd... no checking whether C compiler handles -Woverflow... yes checking whether C compiler handles -Woverride-init... yes checking whether C compiler handles -Wpacked-bitfield-compat... yes checking whether C compiler handles -Wpacked-not-aligned... no checking whether C compiler handles -Wparentheses... yes checking whether C compiler handles -Wpointer-arith... yes checking whether C compiler handles -Wpointer-compare... no checking whether C compiler handles -Wpointer-sign... yes checking whether C compiler handles -Wpointer-to-int-cast... yes checking whether C compiler handles -Wpragmas... yes checking whether C compiler handles -Wpsabi... yes checking whether C compiler handles -Wrestrict... no checking whether C compiler handles -Wreturn-local-addr... yes checking whether C compiler handles -Wreturn-type... yes checking whether C compiler handles -Wscalar-storage-order... no checking whether C compiler handles -Wsequence-point... yes checking whether C compiler handles -Wshadow... yes checking whether C compiler handles -Wshift-count-negative... no checking whether C compiler handles -Wshift-count-overflow... no checking whether C compiler handles -Wshift-negative-value... no checking whether C compiler handles -Wsizeof-array-argument... no checking whether C compiler handles -Wsizeof-pointer-div... no checking whether C compiler handles -Wsizeof-pointer-memaccess... yes checking whether C compiler handles -Wstrict-aliasing... yes checking whether C compiler handles -Wstrict-prototypes... yes checking whether C compiler handles -Wstringop-truncation... no checking whether C compiler handles -Wsuggest-attribute=cold... no checking whether C compiler handles -Wsuggest-attribute=const... yes checking whether C compiler handles -Wsuggest-attribute=format... yes checking whether C compiler handles -Wsuggest-attribute=malloc... no checking whether C compiler handles -Wsuggest-attribute=noreturn... yes checking whether C compiler handles -Wsuggest-attribute=pure... yes checking whether C compiler handles -Wsuggest-final-methods... no checking whether C compiler handles -Wsuggest-final-types... no checking whether C compiler handles -Wswitch... yes checking whether C compiler handles -Wswitch-bool... no checking whether C compiler handles -Wswitch-unreachable... no checking whether C compiler handles -Wsync-nand... yes checking whether C compiler handles -Wtautological-compare... no checking whether C compiler handles -Wtrampolines... yes checking whether C compiler handles -Wtrigraphs... yes checking whether C compiler handles -Wtype-limits... yes checking whether C compiler handles -Wuninitialized... yes checking whether C compiler handles -Wunknown-pragmas... yes checking whether C compiler handles -Wunused... yes checking whether C compiler handles -Wunused-but-set-parameter... yes checking whether C compiler handles -Wunused-but-set-variable... yes checking whether C compiler handles -Wunused-function... yes checking whether C compiler handles -Wunused-label... yes checking whether C compiler handles -Wunused-local-typedefs... yes checking whether C compiler handles -Wunused-parameter... yes checking whether C compiler handles -Wunused-result... yes checking whether C compiler handles -Wunused-value... yes checking whether C compiler handles -Wunused-variable... yes checking whether C compiler handles -Wvarargs... yes checking whether C compiler handles -Wvariadic-macros... yes checking whether C compiler handles -Wvector-operation-performance... yes checking whether C compiler handles -Wvolatile-register-var... yes checking whether C compiler handles -Wwrite-strings... yes checking whether C compiler handles -Walloc-size-larger-than=9223372036854775807... no checking whether C compiler handles -Warray-bounds=2... no checking whether C compiler handles -Wformat-overflow=2... no checking whether C compiler handles -Wformat-truncation=2... no checking whether C compiler handles -Wimplicit-fallthrough=5... no checking whether C compiler handles -Wnormalized=nfc... yes checking whether C compiler handles -Wshift-overflow=2... no checking whether C compiler handles -Wstringop-overflow=2... no checking whether C compiler handles -Wunused-const-variable=2... no checking whether C compiler handles -Wvla-larger-than=4031... no checking whether C compiler handles -Wno-sign-compare... yes checking whether C compiler handles -Wno-cast-function-type... no checking whether C compiler handles -Wjump-misses-init... yes checking whether C compiler handles -Wswitch-enum... yes checking whether C compiler handles -Wno-format-nonliteral... yes checking whether C compiler handles -Wno-format-truncation... no checking whether C compiler handles -fstack-protector-strong... yes checking whether C compiler handles -fexceptions... yes checking whether C compiler handles -fasynchronous-unwind-tables... yes checking whether C compiler handles -fipa-pure-const... yes checking whether C compiler handles -Wno-suggest-attribute=pure... yes checking whether C compiler handles -Wno-suggest-attribute=const... yes checking whether C compiler handles -Werror... yes checking whether C compiler handles -fPIE -DPIE -pie... yes checking for how to force completely read-only GOT table... -Wl,-z -Wl,relro -Wl,-z -Wl,now checking for how to avoid indirect lib deps... -Wl,--no-copy-dt-needed-entries checking for how to stop undefined symbols at link time... -Wl,-z -Wl,defs checking sys/acl.h usability... yes checking sys/acl.h presence... yes checking for sys/acl.h... yes checking for aa_change_profile in -lapparmor... no checking for pthread_mutexattr_init... yes checking for pthread.h... (cached) yes checking whether pthread_sigmask does anything... yes checking for atomic ops implementation... gcc checking for getxattr in -lattr... yes checking sys/xattr.h usability... yes checking sys/xattr.h presence... yes checking for sys/xattr.h... yes checking for audit_encode_nv_string in -laudit... yes checking libaudit.h usability... yes checking libaudit.h presence... yes checking for libaudit.h... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for AVAHI... yes checking for library containing tgetent... -lncurses checking whether rl_completion_quote_character is declared... yes checking for readline in -lreadline... yes checking readline/readline.h usability... yes checking readline/readline.h presence... yes checking for readline/readline.h... yes checking for rl_initialize in -lreadline... yes checking for BASH_COMPLETION... no checking for BLKID... yes checking for capng_updatev in -lcap-ng... yes checking cap-ng.h usability... yes checking cap-ng.h presence... yes checking for cap-ng.h... yes checking for CURL... yes checking for DBUS... yes checking for dbus_watch_get_unix_fd... yes checking for DBusBasicValue... yes checking for DEVMAPPER... yes checking for dlfcn.h... (cached) yes checking for library containing dlopen... -ldl checking for whether to install firewalld libvirt zone... yes checking for FUSE... yes checking for GLUSTERFS... yes checking for GNUTLS... yes checking for HAL... no checking for LIBISCSI... no checking for NETCF... yes checking for ncf_change_begin... yes checking whether to compile with macvtap support... yes checking whether MACVLAN_MODE_PASSTHRU is declared... yes checking for LIBNL... yes checking for LIBNL_ROUTE3... yes checking for LIBPARTED... yes checking for parted... /sbin/parted checking libpcap pcap-config >= 1.0.0 ... yes checking for LIBSSH... no checking for LIBXML... yes checking for struct _xmlURI.query_raw... yes checking whether to compile with macvtap support... yes checking whether MACVLAN_MODE_PASSTHRU is declared... (cached) yes checking for NETCF... yes checking for ncf_change_begin... (cached) yes checking for gettext... yes checking for libintl.h... (cached) yes checking for xgettext... xgettext checking for msgfmt... msgfmt checking for msgmerge... msgmerge checking msgfmt is GNU tool... yes checking for numa_available in -lnuma... yes checking numa.h usability... yes checking numa.h presence... yes checking for numa.h... yes checking for numa_bitmask_isbitset in -lnuma... yes checking for OPENWSMAN... no checking for PCIACCESS... yes checking for init script type... systemd checking for pkcheck... /usr/bin/pkcheck checking for pthread_mutexattr_init... (cached) yes checking for pthread.h... (cached) yes checking whether pthread_sigmask does anything... (cached) yes checking for library containing tgetent... (cached) -lncurses checking whether rl_completion_quote_character is declared... (cached) yes checking for readline in -lreadline... (cached) yes checking for readline/readline.h... (cached) yes checking for rl_initialize in -lreadline... (cached) yes checking for sanlock_init in -lsanlock_client... yes checking sanlock.h usability... yes checking sanlock.h presence... yes checking for sanlock.h... yes checking whether SANLK_INQ_WAIT is declared... yes checking for sanlock_killpath in -lsanlock_client... yes checking for sanlock_inq_lockspace in -lsanlock_client... yes checking for sanlock_write_lockspace in -lsanlock_client... yes checking for sanlock_strerror in -lsanlock_client... yes checking for sasl_client_init in -lsasl2... yes checking sasl/sasl.h usability... yes checking sasl/sasl.h presence... yes checking for sasl/sasl.h... yes checking for fgetfilecon_raw in -lselinux... yes checking selinux/selinux.h usability... yes checking selinux/selinux.h presence... yes checking for selinux/selinux.h... yes checking for selinux setcon parameter type... const checking for selinux selabel_open parameter type... const checking SELinux mount point... /sys/fs/selinux checking selinux/label.h usability... yes checking selinux/label.h presence... yes checking for selinux/label.h... yes checking for SSH2... no checking for UDEV... yes checking for udev_monitor_set_receive_buffer_size... yes checking whether to compile with virtual port support... yes checking for WIRESHARK_DISSECTOR... no checking for xdrmem_create in -lportablexdr... no checking for library containing xdrmem_create... none required checking for xdr_u_int64_t... no checking where to find <rpc/rpc.h>... none checking for qemu-kvm... no checking for qemu... no checking for kvm... no checking for qemu-system-x86_64... no checking for yajl_parse_complete in -lyajl... no checking for yajl_tree_parse in -lyajl... yes checking yajl/yajl_common.h usability... yes checking yajl/yajl_common.h presence... yes checking for yajl/yajl_common.h... yes checking size of long... 8 checking ifaddrs.h usability... yes checking ifaddrs.h presence... yes checking for ifaddrs.h... yes checking libtasn1.h usability... yes checking libtasn1.h presence... yes checking for libtasn1.h... yes checking linux/magic.h usability... yes checking linux/magic.h presence... yes checking for linux/magic.h... yes checking mntent.h usability... yes checking mntent.h presence... yes checking for mntent.h... yes checking net/ethernet.h usability... yes checking net/ethernet.h presence... yes checking for net/ethernet.h... yes checking netinet/tcp.h usability... yes checking netinet/tcp.h presence... yes checking for netinet/tcp.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking sys/mount.h usability... yes checking sys/mount.h presence... yes checking for sys/mount.h... yes checking sys/syscall.h usability... yes checking sys/syscall.h presence... yes checking for sys/syscall.h... yes checking for sys/sysctl.h... (cached) yes checking sys/ucred.h usability... no checking sys/ucred.h presence... no checking for sys/ucred.h... no checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking whether htole64 is declared... yes checking for stat... yes checking for stat64... yes checking for __xstat... yes checking for __xstat64... yes checking for lstat... (cached) yes checking for lstat64... yes checking for __lxstat... yes checking for __lxstat64... yes checking for struct ifreq... yes checking for struct sockpeercred... no checking whether ETH_FLAG_TXVLAN is declared... yes checking whether ETH_FLAG_NTUPLE is declared... yes checking whether ETH_FLAG_RXHASH is declared... yes checking whether ETH_FLAG_LRO is declared... yes checking whether ETHTOOL_GGSO is declared... yes checking whether ETHTOOL_GGRO is declared... yes checking whether ETHTOOL_GFLAGS is declared... yes checking whether ETHTOOL_GFEATURES is declared... yes checking whether ETHTOOL_SCOALESCE is declared... yes checking whether ETHTOOL_GCOALESCE is declared... yes checking whether SEEK_HOLE is declared... yes checking for gettext in -lintl... no checking for rpcgen... /usr/bin/rpcgen checking for xmllint... /usr/bin/xmllint checking for xsltproc... /usr/bin/xsltproc checking for augparse... /usr/bin/augparse checking whether ln -s works... yes checking for dmidecode... /sbin/dmidecode checking for dnsmasq... /sbin/dnsmasq checking for radvd... /sbin/radvd checking for tc... /sbin/tc checking for udevadm... /usr/bin/udevadm checking for udevsettle... no checking for modprobe... /sbin/modprobe checking for rmmod... /sbin/rmmod checking for mm-ctl... mm-ctl checking for ovs-vsctl... ovs-vsctl checking for scrub... /usr/bin/scrub checking for addr2line... /usr/bin/addr2line checking for ip... /sbin/ip checking for iptables... /sbin/iptables checking for ip6tables... /sbin/ip6tables checking for ebtables... /sbin/ebtables checking for qemu-bridge-helper... /usr/libexec/qemu-bridge-helper checking for qemu-pr-helper... /usr/bin/qemu-pr-helper checking for xen_vm_start in -lxenserver... no checking for LIBXL... no checking for libxl_cpupool_cpuadd_cpumap in -lxenlight... no checking whether LIBXL_DOMAIN_TYPE_PVH is declared... no checking for PARALLELS_SDK... no checking for bhyve... no checking for bhyvectl... no checking for bhyveload... no checking for dtrace... /usr/bin/dtrace checking for numad... /usr/bin/numad checking for init script type... systemd checking for whether to install sysctl config... yes checking nss.h usability... yes checking nss.h presence... yes checking for nss.h... yes checking for struct gaih_addrtuple... yes checking for ns_mtab... no checking for nss_module_unregister_fn... no checking linux/kvm.h usability... yes checking linux/kvm.h presence... yes checking for linux/kvm.h... yes checking whether <linux/*.h> and <netinet/*.h> headers are compatible... yes checking for linux/param.h... yes checking for linux/sockios.h... yes checking for linux/if_bridge.h... yes checking for linux/if_tun.h... yes checking for pkg-config... (cached) /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for selinux_virtual_domain_context_path... yes checking for selinux_virtual_image_context_path... yes checking for selinux_lxc_contexts_path... yes checking for mntent.h... (cached) yes checking for mount... /usr/bin/mount checking for umount... /usr/bin/umount checking for mkfs... /sbin/mkfs checking for showmount... /sbin/showmount checking for pvcreate... /sbin/pvcreate checking for vgcreate... /sbin/vgcreate checking for lvcreate... /sbin/lvcreate checking for pvremove... /sbin/pvremove checking for vgremove... /sbin/vgremove checking for lvremove... /sbin/lvremove checking for lvchange... /sbin/lvchange checking for vgchange... /sbin/vgchange checking for vgscan... /sbin/vgscan checking for pvs... /sbin/pvs checking for vgs... /sbin/vgs checking for lvs... /sbin/lvs checking for iscsiadm... /sbin/iscsiadm checking rbd/librbd.h usability... yes checking rbd/librbd.h presence... yes checking for rbd/librbd.h... yes checking for rbd_get_features... yes checking for collie... no checking for dog... no checking for zfs... no checking for zpool... no checking for vstorage... no checking for vstorage-mount... no checking for umount... (cached) /usr/bin/umount checking linux/btrfs.h usability... yes checking linux/btrfs.h presence... yes checking for linux/btrfs.h... yes checking xfs/xfs.h usability... no checking xfs/xfs.h presence... no checking for xfs/xfs.h... no checking linux/devlink.h usability... yes checking linux/devlink.h presence... yes checking for linux/devlink.h... yes checking whether DEVLINK_CMD_ESWITCH_GET is declared... yes checking whether VHOST_VSOCK_SET_GUEST_CID is declared... yes checking for python3... /usr/bin/python3 checking for perl... /usr/bin/perl checking Whether to build test suite by default... yes checking whether GET_VLAN_VID_CMD is declared... yes checking for struct ifreq.ifr_newname... yes checking for struct ifreq.ifr_ifindex... yes checking for struct ifreq.ifr_index... no checking for struct ifreq.ifr_hwaddr... yes checking whether BRDGSFD is declared... no checking whether BRDGADD is declared... no checking whether BRDGDEL is declared... no checking whether cpuset_getaffinity is declared... no checking for struct if_data.ifi_oqdrops... no checking whether clock_serv_t is declared... no checking whether host_get_clock_service is declared... no checking whether clock_get_time is declared... no checking whether this build is done by a static analysis tool... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating run config.status: creating Makefile config.status: creating src/Makefile config.status: creating include/libvirt/Makefile config.status: creating docs/Makefile config.status: creating gnulib/lib/Makefile config.status: creating gnulib/tests/Makefile config.status: creating .color_coded config.status: creating .ycm_extra_conf.py config.status: creating libvirt.pc config.status: creating libvirt-qemu.pc config.status: creating libvirt-lxc.pc config.status: creating libvirt-admin.pc config.status: creating src/libvirt.pc config.status: creating src/libvirt-qemu.pc config.status: creating src/libvirt-lxc.pc config.status: creating libvirt.spec config.status: creating mingw-libvirt.spec config.status: creating po/Makefile config.status: creating include/libvirt/libvirt-common.h config.status: creating examples/Makefile config.status: creating tests/Makefile config.status: creating tools/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands configure: configure: Configuration summary configure: ===================== configure: configure: Drivers configure: configure: QEMU: yes configure: OpenVZ: yes configure: VMware: yes configure: VBox: yes configure: XenAPI: no configure: libxl: no configure: LXC: yes configure: PHYP: no configure: ESX: yes configure: Hyper-V: no configure: vz: no configure: Bhyve: no configure: Test: yes configure: Remote: yes configure: Network: yes configure: Libvirtd: yes configure: Interface: yes configure: configure: Storage Drivers configure: configure: Dir: yes configure: FS: yes configure: NetFS: yes configure: LVM: yes configure: iSCSI: yes configure: iscsi-direct: no configure: SCSI: yes configure: mpath: yes configure: Disk: yes configure: RBD: yes configure: Sheepdog: no configure: Gluster: yes configure: ZFS: no configure: Virtuozzo storage: no configure: configure: Security Drivers configure: configure: SELinux: yes configure: AppArmor: no configure: configure: Driver Loadable Modules configure: configure: driver_modules: yes (CFLAGS='' LIBS='-ldl') configure: configure: Libraries configure: configure: acl: yes (CFLAGS='' LIBS='-lacl') configure: apparmor: no configure: attr: yes (CFLAGS='' LIBS='-lattr') configure: audit: yes (CFLAGS='' LIBS='-laudit') configure: avahi: yes (CFLAGS='-D_REENTRANT ' LIBS='-lavahi-common -lavahi-client ') configure: bash_completion: no configure: blkid: yes (CFLAGS='-I/usr/include/blkid -I/usr/include/uuid ' LIBS='-lblkid ') configure: capng: yes (CFLAGS='' LIBS='-lcap-ng') configure: curl: yes (CFLAGS='-DCURL_DISABLE_TYPECHECK ' LIBS='-lcurl ') configure: dbus: yes (CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include ' LIBS='-ldbus-1 ') configure: dlopen: yes (CFLAGS='' LIBS='-ldl') configure: firewalld: yes (CFLAGS='' LIBS='') configure: firewalld-zone: yes configure: fuse: yes (CFLAGS='-D_FILE_OFFSET_BITS=64 -I/usr/include/fuse ' LIBS='-pthread -lfuse ') configure: glusterfs: yes (CFLAGS='-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64 -DUSE_POSIX_ACLS=1 -I/usr/include/glusterfs -I/usr/include/uuid ' LIBS='-lacl -lgfapi -lglusterfs -lgfrpc -lgfxdr -luuid ') configure: gnutls: yes (CFLAGS='-I/usr/include/p11-kit-1 ' LIBS='-lgnutls ') configure: hal: no configure: libiscsi: no configure: libnl: yes (CFLAGS='-I/usr/include/libnl3 -I/usr/include/libnl3 ' LIBS='-lnl-3 -lnl-route-3 -lnl-3 ') configure: libpcap: yes (CFLAGS='' LIBS='-lpcap') configure: libssh: no configure: libxl: no configure: libxml: yes (CFLAGS='-I/usr/include/libxml2 ' LIBS='-lxml2 ') configure: macvtap: yes (CFLAGS='' LIBS='') configure: netcf: yes (CFLAGS=' ' LIBS='-lnetcf ') configure: NLS: yes configure: nss: yes configure: numactl: yes (CFLAGS='' LIBS='-lnuma') configure: openwsman: no configure: pciaccess: yes (CFLAGS=' ' LIBS='-lpciaccess ') configure: pm_utils: no configure: polkit: yes configure: rbd: yes (CFLAGS='' LIBS='-lrbd -lrados') configure: readline: yes (CFLAGS='-D_FUNCTION_DEF ' LIBS='-lreadline') configure: sanlock: yes (CFLAGS='' LIBS='-lsanlock_client') configure: sasl: yes (CFLAGS='' LIBS='-lsasl2') configure: selinux: yes (CFLAGS='' LIBS='-lselinux') configure: ssh2: no configure: udev: yes (CFLAGS=' ' LIBS='-ludev ') configure: virtualport: yes (CFLAGS='' LIBS='') configure: xdr: yes (CFLAGS='' LIBS='') configure: xenapi: no configure: yajl: yes (CFLAGS='' LIBS='-lyajl') configure: configure: Windows configure: configure: Cygwin: no configure: MinGW: no configure: MSVC: no configure: windres: no configure: configure: Test suite configure: configure: Coverage: no configure: Alloc OOM: no configure: configure: Miscellaneous configure: configure: Debug: yes configure: Use -Werror: yes configure: Warning Flags: -fno-common -W -Waddress -Waggressive-loop-optimizations -Wall -Wattributes -Wbad-function-cast -Wbuiltin-macro-redefined -Wcast-align -Wchar-subscripts -Wclobbered -Wcomment -Wcomments -Wcoverage-mismatch -Wcpp -Wdeprecated-declarations -Wdiv-by-zero -Wdouble-promotion -Wempty-body -Wendif-labels -Wextra -Wformat-contains-nul -Wformat-extra-args -Wformat-security -Wformat-y2k -Wformat-zero-length -Wfree-nonheap-object -Wignored-qualifiers -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Winit-self -Winline -Wint-to-pointer-cast -Winvalid-memory-model -Winvalid-pch -Wlogical-op -Wmain -Wmaybe-uninitialized -Wmissing-braces -Wmissing-declarations -Wmissing-field-initializers -Wmissing-include-dirs -Wmissing-parameter-type -Wmissing-prototypes -Wmultichar -Wnarrowing -Wnested-externs -Wnonnull -Wold-style-declaration -Wold-style-definition -Woverflow -Woverride-init -Wpacked-bitfield-compat -Wparentheses -Wpointer-arith -Wpointer-sign -Wpointer-to-int-cast -Wpragmas -Wpsabi -Wreturn-local-addr -Wreturn-type -Wsequence-point -Wshadow -Wsizeof-pointer-memaccess -Wstrict-aliasing -Wstrict-prototypes -Wsuggest-attribute=const -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wswitch -Wsync-nand -Wtrampolines -Wtrigraphs -Wtype-limits -Wuninitialized -Wunknown-pragmas -Wunused -Wunused-but-set-parameter -Wunused-but-set-variable -Wunused-function -Wunused-label -Wunused-local-typedefs -Wunused-parameter -Wunused-result -Wunused-value -Wunused-variable -Wvarargs -Wvariadic-macros -Wvector-operation-performance -Wvolatile-register-var -Wwrite-strings -Wnormalized=nfc -Wno-sign-compare -Wjump-misses-init -Wswitch-enum -Wno-format-nonliteral -fstack-protector-strong -fexceptions -fasynchronous-unwind-tables -fipa-pure-const -Wno-suggest-attribute=pure -Wno-suggest-attribute=const -Werror configure: DTrace: yes configure: numad: yes configure: Init script: systemd configure: Char device locks: /var/lock configure: Default Editor: vi configure: Loader/NVRAM: configure: virt-login-shell: yes configure: virt-host-validate: yes configure: TLS priority: NORMAL configure: configure: Developer Tools configure: configure: wireshark_dissector: no configure: configure: Privileges configure: configure: QEMU: root:root configure:
Now type 'make' to compile libvirt. GEN spacing-check Invalid character after comma: src/qemu/qemu_domain.c:10408: virCommandAddArgList(cmd, "/proc/device-tree/","-path", path_pattern, maint.mk: incorrect formatting make: *** [spacing-check] Error 1
I'll wait for more inputs in the reviews then I'll fix this spacing issue in the next spin.
real 11m22.817s user 8m42.614s sys 3m41.364s === OUTPUT END ===
Test command exited with code: 2
--- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-devel@redhat.com
On Sun, Mar 03, 2019 at 10:23:11AM -0300, Daniel Henrique Barboza wrote:
This series includes Libvirt support for a new QEMU feature for the spapr (PPC64) machine, NVIDIA V100 + P9 passthrough. Refer to [1] for the version 3 of this feature (same version used as a reference for this series).
v2 has a entirely different approach from the first patch [2] that simply grants IPC_LOCK to the QEMU process:
- first patch is a cleanup to make it easier to insert additional logic in the code
- patch 2 contains helper functions that browses the device tree at /proc/device-tree to detect if a given VFIO PCI device is using a NVLink2 bus
- patch 3 includes the passthroughLimit calculation for PPC64 guests that are using NVLink2 passthrough GPUs.
Is there something more (like a doc) apart from the patches that I can use to crosscheck your implementation? Erik
On 3/4/19 10:03 AM, Erik Skultety wrote:
On Sun, Mar 03, 2019 at 10:23:11AM -0300, Daniel Henrique Barboza wrote:
This series includes Libvirt support for a new QEMU feature for the spapr (PPC64) machine, NVIDIA V100 + P9 passthrough. Refer to [1] for the version 3 of this feature (same version used as a reference for this series).
v2 has a entirely different approach from the first patch [2] that simply grants IPC_LOCK to the QEMU process:
- first patch is a cleanup to make it easier to insert additional logic in the code
- patch 2 contains helper functions that browses the device tree at /proc/device-tree to detect if a given VFIO PCI device is using a NVLink2 bus
- patch 3 includes the passthroughLimit calculation for PPC64 guests that are using NVLink2 passthrough GPUs.
[1] https://patchwork.kernel.org/cover/10831413/ Is there something more (like a doc) apart from the patches that I can use to crosscheck your implementation?
I don't know. I am CCing Piotr Jaroszynski from NVIDIA here to see if he can give us more info. Piotr, is there any public available doc from NVIDIA with NVLink2 passthrough specifications? Thanks, Daniel
Erik
participants (3)
-
Daniel Henrique Barboza -
Erik Skultety -
no-reply@patchew.org