Mock Version: 2.8 Mock Version: 2.8 Mock Version: 2.8 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/audit.spec'], chrootPath='/var/lib/mock/dist-an23-build-259094-63769/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=86400uid=989gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/audit.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False Building target platforms: x86_64 Building for target x86_64 setting SOURCE_DATE_EPOCH=1683072000 Wrote: /builddir/build/SRPMS/audit-3.1.1-1.an23.src.rpm Child return code was: 0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/audit.spec'], chrootPath='/var/lib/mock/dist-an23-build-259094-63769/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=86400uid=989gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/audit.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False Building target platforms: x86_64 Building for target x86_64 setting SOURCE_DATE_EPOCH=1683072000 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.0cAnml + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf audit-3.1.1 + /usr/lib/rpm/rpmuncompress -x /builddir/build/SOURCES/audit-3.1.1.tar.gz + STATUS=0 + '[' 0 -ne 0 ']' + cd audit-3.1.1 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + cp -fv /usr/include/linux/audit.h lib/ '/usr/include/linux/audit.h' -> 'lib/audit.h' + cat lib/audit.h /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /* audit.h -- Auditing support * * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. * All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Written by Rickard E. (Rik) Faith * */ #ifndef _LINUX_AUDIT_H_ #define _LINUX_AUDIT_H_ #include #include /* The netlink messages for the audit system is divided into blocks: * 1000 - 1099 are for commanding the audit system * 1100 - 1199 user space trusted application messages * 1200 - 1299 messages internal to the audit daemon * 1300 - 1399 audit event messages * 1400 - 1499 SE Linux use * 1500 - 1599 kernel LSPP events * 1600 - 1699 kernel crypto events * 1700 - 1799 kernel anomaly records * 1800 - 1899 kernel integrity events * 1900 - 1999 future kernel use * 2000 is for otherwise unclassified kernel audit messages (legacy) * 2001 - 2099 unused (kernel) * 2100 - 2199 user space anomaly records * 2200 - 2299 user space actions taken in response to anomalies * 2300 - 2399 user space generated LSPP events * 2400 - 2499 user space crypto events * 2500 - 2999 future user space (maybe integrity labels and related events) * * Messages from 1000-1199 are bi-directional. 1200-1299 & 2100 - 2999 are * exclusively user space. 1300-2099 is kernel --> user space * communication. */ #define AUDIT_GET 1000 /* Get status */ #define AUDIT_SET 1001 /* Set status (enable/disable/auditd) */ #define AUDIT_LIST 1002 /* List syscall rules -- deprecated */ #define AUDIT_ADD 1003 /* Add syscall rule -- deprecated */ #define AUDIT_DEL 1004 /* Delete syscall rule -- deprecated */ #define AUDIT_USER 1005 /* Message from userspace -- deprecated */ #define AUDIT_LOGIN 1006 /* Define the login id and information */ #define AUDIT_WATCH_INS 1007 /* Insert file/dir watch entry */ #define AUDIT_WATCH_REM 1008 /* Remove file/dir watch entry */ #define AUDIT_WATCH_LIST 1009 /* List all file/dir watches */ #define AUDIT_SIGNAL_INFO 1010 /* Get info about sender of signal to auditd */ #define AUDIT_ADD_RULE 1011 /* Add syscall filtering rule */ #define AUDIT_DEL_RULE 1012 /* Delete syscall filtering rule */ #define AUDIT_LIST_RULES 1013 /* List syscall filtering rules */ #define AUDIT_TRIM 1014 /* Trim junk from watched tree */ #define AUDIT_MAKE_EQUIV 1015 /* Append to watched tree */ #define AUDIT_TTY_GET 1016 /* Get TTY auditing status */ #define AUDIT_TTY_SET 1017 /* Set TTY auditing status */ #define AUDIT_SET_FEATURE 1018 /* Turn an audit feature on or off */ #define AUDIT_GET_FEATURE 1019 /* Get which features are enabled */ #define AUDIT_FIRST_USER_MSG 1100 /* Userspace messages mostly uninteresting to kernel */ #define AUDIT_USER_AVC 1107 /* We filter this differently */ #define AUDIT_USER_TTY 1124 /* Non-ICANON TTY input meaning */ #define AUDIT_LAST_USER_MSG 1199 #define AUDIT_FIRST_USER_MSG2 2100 /* More user space messages */ #define AUDIT_LAST_USER_MSG2 2999 #define AUDIT_DAEMON_START 1200 /* Daemon startup record */ #define AUDIT_DAEMON_END 1201 /* Daemon normal stop record */ #define AUDIT_DAEMON_ABORT 1202 /* Daemon error stop record */ #define AUDIT_DAEMON_CONFIG 1203 /* Daemon config change */ #define AUDIT_SYSCALL 1300 /* Syscall event */ /* #define AUDIT_FS_WATCH 1301 * Deprecated */ #define AUDIT_PATH 1302 /* Filename path information */ #define AUDIT_IPC 1303 /* IPC record */ #define AUDIT_SOCKETCALL 1304 /* sys_socketcall arguments */ #define AUDIT_CONFIG_CHANGE 1305 /* Audit system configuration change */ #define AUDIT_SOCKADDR 1306 /* sockaddr copied as syscall arg */ #define AUDIT_CWD 1307 /* Current working directory */ #define AUDIT_EXECVE 1309 /* execve arguments */ #define AUDIT_IPC_SET_PERM 1311 /* IPC new permissions record type */ #define AUDIT_MQ_OPEN 1312 /* POSIX MQ open record type */ #define AUDIT_MQ_SENDRECV 1313 /* POSIX MQ send/receive record type */ #define AUDIT_MQ_NOTIFY 1314 /* POSIX MQ notify record type */ #define AUDIT_MQ_GETSETATTR 1315 /* POSIX MQ get/set attribute record type */ #define AUDIT_KERNEL_OTHER 1316 /* For use by 3rd party modules */ #define AUDIT_FD_PAIR 1317 /* audit record for pipe/socketpair */ #define AUDIT_OBJ_PID 1318 /* ptrace target */ #define AUDIT_TTY 1319 /* Input on an administrative TTY */ #define AUDIT_EOE 1320 /* End of multi-record event */ #define AUDIT_BPRM_FCAPS 1321 /* Information about fcaps increasing perms */ #define AUDIT_CAPSET 1322 /* Record showing argument to sys_capset */ #define AUDIT_MMAP 1323 /* Record showing descriptor and flags in mmap */ #define AUDIT_NETFILTER_PKT 1324 /* Packets traversing netfilter chains */ #define AUDIT_NETFILTER_CFG 1325 /* Netfilter chain modifications */ #define AUDIT_SECCOMP 1326 /* Secure Computing event */ #define AUDIT_PROCTITLE 1327 /* Proctitle emit event */ #define AUDIT_FEATURE_CHANGE 1328 /* audit log listing feature changes */ #define AUDIT_REPLACE 1329 /* Replace auditd if this packet unanswerd */ #define AUDIT_KERN_MODULE 1330 /* Kernel Module events */ #define AUDIT_FANOTIFY 1331 /* Fanotify access decision */ #define AUDIT_TIME_INJOFFSET 1332 /* Timekeeping offset injected */ #define AUDIT_TIME_ADJNTPVAL 1333 /* NTP value adjustment */ #define AUDIT_BPF 1334 /* BPF subsystem */ #define AUDIT_EVENT_LISTENER 1335 /* Task joined multicast read socket */ #define AUDIT_AVC 1400 /* SE Linux avc denial or grant */ #define AUDIT_SELINUX_ERR 1401 /* Internal SE Linux Errors */ #define AUDIT_AVC_PATH 1402 /* dentry, vfsmount pair from avc */ #define AUDIT_MAC_POLICY_LOAD 1403 /* Policy file load */ #define AUDIT_MAC_STATUS 1404 /* Changed enforcing,permissive,off */ #define AUDIT_MAC_CONFIG_CHANGE 1405 /* Changes to booleans */ #define AUDIT_MAC_UNLBL_ALLOW 1406 /* NetLabel: allow unlabeled traffic */ #define AUDIT_MAC_CIPSOV4_ADD 1407 /* NetLabel: add CIPSOv4 DOI entry */ #define AUDIT_MAC_CIPSOV4_DEL 1408 /* NetLabel: del CIPSOv4 DOI entry */ #define AUDIT_MAC_MAP_ADD 1409 /* NetLabel: add LSM domain mapping */ #define AUDIT_MAC_MAP_DEL 1410 /* NetLabel: del LSM domain mapping */ #define AUDIT_MAC_IPSEC_ADDSA 1411 /* Not used */ #define AUDIT_MAC_IPSEC_DELSA 1412 /* Not used */ #define AUDIT_MAC_IPSEC_ADDSPD 1413 /* Not used */ #define AUDIT_MAC_IPSEC_DELSPD 1414 /* Not used */ #define AUDIT_MAC_IPSEC_EVENT 1415 /* Audit an IPSec event */ #define AUDIT_MAC_UNLBL_STCADD 1416 /* NetLabel: add a static label */ #define AUDIT_MAC_UNLBL_STCDEL 1417 /* NetLabel: del a static label */ #define AUDIT_MAC_CALIPSO_ADD 1418 /* NetLabel: add CALIPSO DOI entry */ #define AUDIT_MAC_CALIPSO_DEL 1419 /* NetLabel: del CALIPSO DOI entry */ #define AUDIT_FIRST_KERN_ANOM_MSG 1700 #define AUDIT_LAST_KERN_ANOM_MSG 1799 #define AUDIT_ANOM_PROMISCUOUS 1700 /* Device changed promiscuous mode */ #define AUDIT_ANOM_ABEND 1701 /* Process ended abnormally */ #define AUDIT_ANOM_LINK 1702 /* Suspicious use of file links */ #define AUDIT_ANOM_CREAT 1703 /* Suspicious file creation */ #define AUDIT_INTEGRITY_DATA 1800 /* Data integrity verification */ #define AUDIT_INTEGRITY_METADATA 1801 /* Metadata integrity verification */ #define AUDIT_INTEGRITY_STATUS 1802 /* Integrity enable status */ #define AUDIT_INTEGRITY_HASH 1803 /* Integrity HASH type */ #define AUDIT_INTEGRITY_PCR 1804 /* PCR invalidation msgs */ #define AUDIT_INTEGRITY_RULE 1805 /* policy rule */ #define AUDIT_INTEGRITY_EVM_XATTR 1806 /* New EVM-covered xattr */ #define AUDIT_INTEGRITY_POLICY_RULE 1807 /* IMA policy rules */ #define AUDIT_KERNEL 2000 /* Asynchronous audit record. NOT A REQUEST. */ /* Rule flags */ #define AUDIT_FILTER_USER 0x00 /* Apply rule to user-generated messages */ #define AUDIT_FILTER_TASK 0x01 /* Apply rule at task creation (not syscall) */ #define AUDIT_FILTER_ENTRY 0x02 /* Apply rule at syscall entry */ #define AUDIT_FILTER_WATCH 0x03 /* Apply rule to file system watches */ #define AUDIT_FILTER_EXIT 0x04 /* Apply rule at syscall exit */ #define AUDIT_FILTER_EXCLUDE 0x05 /* Apply rule before record creation */ #define AUDIT_FILTER_TYPE AUDIT_FILTER_EXCLUDE /* obsolete misleading naming */ #define AUDIT_FILTER_FS 0x06 /* Apply rule at __audit_inode_child */ #define AUDIT_NR_FILTERS 7 #define AUDIT_FILTER_PREPEND 0x10 /* Prepend to front of list */ /* Rule actions */ #define AUDIT_NEVER 0 /* Do not build context if rule matches */ #define AUDIT_POSSIBLE 1 /* Build context if rule matches */ #define AUDIT_ALWAYS 2 /* Generate audit record if rule matches */ /* Rule structure sizes -- if these change, different AUDIT_ADD and * AUDIT_LIST commands must be implemented. */ #define AUDIT_MAX_FIELDS 64 #define AUDIT_MAX_KEY_LEN 256 #define AUDIT_BITMASK_SIZE 64 #define AUDIT_WORD(nr) ((__u32)((nr)/32)) #define AUDIT_BIT(nr) (1 << ((nr) - AUDIT_WORD(nr)*32)) #define AUDIT_SYSCALL_CLASSES 16 #define AUDIT_CLASS_DIR_WRITE 0 #define AUDIT_CLASS_DIR_WRITE_32 1 #define AUDIT_CLASS_CHATTR 2 #define AUDIT_CLASS_CHATTR_32 3 #define AUDIT_CLASS_READ 4 #define AUDIT_CLASS_READ_32 5 #define AUDIT_CLASS_WRITE 6 #define AUDIT_CLASS_WRITE_32 7 #define AUDIT_CLASS_SIGNAL 8 #define AUDIT_CLASS_SIGNAL_32 9 /* This bitmask is used to validate user input. It represents all bits that * are currently used in an audit field constant understood by the kernel. * If you are adding a new #define AUDIT_, please ensure that * AUDIT_UNUSED_BITS is updated if need be. */ #define AUDIT_UNUSED_BITS 0x07FFFC00 /* AUDIT_FIELD_COMPARE rule list */ #define AUDIT_COMPARE_UID_TO_OBJ_UID 1 #define AUDIT_COMPARE_GID_TO_OBJ_GID 2 #define AUDIT_COMPARE_EUID_TO_OBJ_UID 3 #define AUDIT_COMPARE_EGID_TO_OBJ_GID 4 #define AUDIT_COMPARE_AUID_TO_OBJ_UID 5 #define AUDIT_COMPARE_SUID_TO_OBJ_UID 6 #define AUDIT_COMPARE_SGID_TO_OBJ_GID 7 #define AUDIT_COMPARE_FSUID_TO_OBJ_UID 8 #define AUDIT_COMPARE_FSGID_TO_OBJ_GID 9 #define AUDIT_COMPARE_UID_TO_AUID 10 #define AUDIT_COMPARE_UID_TO_EUID 11 #define AUDIT_COMPARE_UID_TO_FSUID 12 #define AUDIT_COMPARE_UID_TO_SUID 13 #define AUDIT_COMPARE_AUID_TO_FSUID 14 #define AUDIT_COMPARE_AUID_TO_SUID 15 #define AUDIT_COMPARE_AUID_TO_EUID 16 #define AUDIT_COMPARE_EUID_TO_SUID 17 #define AUDIT_COMPARE_EUID_TO_FSUID 18 #define AUDIT_COMPARE_SUID_TO_FSUID 19 #define AUDIT_COMPARE_GID_TO_EGID 20 #define AUDIT_COMPARE_GID_TO_FSGID 21 #define AUDIT_COMPARE_GID_TO_SGID 22 #define AUDIT_COMPARE_EGID_TO_FSGID 23 #define AUDIT_COMPARE_EGID_TO_SGID 24 #define AUDIT_COMPARE_SGID_TO_FSGID 25 #define AUDIT_MAX_FIELD_COMPARE AUDIT_COMPARE_SGID_TO_FSGID /* Rule fields */ /* These are useful when checking the * task structure at task creation time * (AUDIT_PER_TASK). */ #define AUDIT_PID 0 #define AUDIT_UID 1 #define AUDIT_EUID 2 #define AUDIT_SUID 3 #define AUDIT_FSUID 4 #define AUDIT_GID 5 #define AUDIT_EGID 6 #define AUDIT_SGID 7 #define AUDIT_FSGID 8 #define AUDIT_LOGINUID 9 #define AUDIT_PERS 10 #define AUDIT_ARCH 11 #define AUDIT_MSGTYPE 12 #define AUDIT_SUBJ_USER 13 /* security label user */ #define AUDIT_SUBJ_ROLE 14 /* security label role */ #define AUDIT_SUBJ_TYPE 15 /* security label type */ #define AUDIT_SUBJ_SEN 16 /* security label sensitivity label */ #define AUDIT_SUBJ_CLR 17 /* security label clearance label */ #define AUDIT_PPID 18 #define AUDIT_OBJ_USER 19 #define AUDIT_OBJ_ROLE 20 #define AUDIT_OBJ_TYPE 21 #define AUDIT_OBJ_LEV_LOW 22 #define AUDIT_OBJ_LEV_HIGH 23 #define AUDIT_LOGINUID_SET 24 #define AUDIT_SESSIONID 25 /* Session ID */ #define AUDIT_FSTYPE 26 /* FileSystem Type */ /* These are ONLY useful when checking * at syscall exit time (AUDIT_AT_EXIT). */ #define AUDIT_DEVMAJOR 100 #define AUDIT_DEVMINOR 101 #define AUDIT_INODE 102 #define AUDIT_EXIT 103 #define AUDIT_SUCCESS 104 /* exit >= 0; value ignored */ #define AUDIT_WATCH 105 #define AUDIT_PERM 106 #define AUDIT_DIR 107 #define AUDIT_FILETYPE 108 #define AUDIT_OBJ_UID 109 #define AUDIT_OBJ_GID 110 #define AUDIT_FIELD_COMPARE 111 #define AUDIT_EXE 112 #define AUDIT_SADDR_FAM 113 #define AUDIT_ARG0 200 #define AUDIT_ARG1 (AUDIT_ARG0+1) #define AUDIT_ARG2 (AUDIT_ARG0+2) #define AUDIT_ARG3 (AUDIT_ARG0+3) #define AUDIT_FILTERKEY 210 #define AUDIT_NEGATE 0x80000000 /* These are the supported operators. * 4 2 1 8 * = > < ? * ---------- * 0 0 0 0 00 nonsense * 0 0 0 1 08 & bit mask * 0 0 1 0 10 < * 0 1 0 0 20 > * 0 1 1 0 30 != * 1 0 0 0 40 = * 1 0 0 1 48 &= bit test * 1 0 1 0 50 <= * 1 1 0 0 60 >= * 1 1 1 1 78 all operators */ #define AUDIT_BIT_MASK 0x08000000 #define AUDIT_LESS_THAN 0x10000000 #define AUDIT_GREATER_THAN 0x20000000 #define AUDIT_NOT_EQUAL 0x30000000 #define AUDIT_EQUAL 0x40000000 #define AUDIT_BIT_TEST (AUDIT_BIT_MASK|AUDIT_EQUAL) #define AUDIT_LESS_THAN_OR_EQUAL (AUDIT_LESS_THAN|AUDIT_EQUAL) #define AUDIT_GREATER_THAN_OR_EQUAL (AUDIT_GREATER_THAN|AUDIT_EQUAL) #define AUDIT_OPERATORS (AUDIT_EQUAL|AUDIT_NOT_EQUAL|AUDIT_BIT_MASK) enum { Audit_equal, Audit_not_equal, Audit_bitmask, Audit_bittest, Audit_lt, Audit_gt, Audit_le, Audit_ge, Audit_bad }; /* Status symbols */ /* Mask values */ #define AUDIT_STATUS_ENABLED 0x0001 #define AUDIT_STATUS_FAILURE 0x0002 #define AUDIT_STATUS_PID 0x0004 #define AUDIT_STATUS_RATE_LIMIT 0x0008 #define AUDIT_STATUS_BACKLOG_LIMIT 0x0010 #define AUDIT_STATUS_BACKLOG_WAIT_TIME 0x0020 #define AUDIT_STATUS_LOST 0x0040 #define AUDIT_STATUS_BACKLOG_WAIT_TIME_ACTUAL 0x0080 #define AUDIT_FEATURE_BITMAP_BACKLOG_LIMIT 0x00000001 #define AUDIT_FEATURE_BITMAP_BACKLOG_WAIT_TIME 0x00000002 #define AUDIT_FEATURE_BITMAP_EXECUTABLE_PATH 0x00000004 #define AUDIT_FEATURE_BITMAP_EXCLUDE_EXTEND 0x00000008 #define AUDIT_FEATURE_BITMAP_SESSIONID_FILTER 0x00000010 #define AUDIT_FEATURE_BITMAP_LOST_RESET 0x00000020 #define AUDIT_FEATURE_BITMAP_FILTER_FS 0x00000040 #define AUDIT_FEATURE_BITMAP_ALL (AUDIT_FEATURE_BITMAP_BACKLOG_LIMIT | \ AUDIT_FEATURE_BITMAP_BACKLOG_WAIT_TIME | \ AUDIT_FEATURE_BITMAP_EXECUTABLE_PATH | \ AUDIT_FEATURE_BITMAP_EXCLUDE_EXTEND | \ AUDIT_FEATURE_BITMAP_SESSIONID_FILTER | \ AUDIT_FEATURE_BITMAP_LOST_RESET | \ AUDIT_FEATURE_BITMAP_FILTER_FS) /* deprecated: AUDIT_VERSION_* */ #define AUDIT_VERSION_LATEST AUDIT_FEATURE_BITMAP_ALL #define AUDIT_VERSION_BACKLOG_LIMIT AUDIT_FEATURE_BITMAP_BACKLOG_LIMIT #define AUDIT_VERSION_BACKLOG_WAIT_TIME AUDIT_FEATURE_BITMAP_BACKLOG_WAIT_TIME /* Failure-to-log actions */ #define AUDIT_FAIL_SILENT 0 #define AUDIT_FAIL_PRINTK 1 #define AUDIT_FAIL_PANIC 2 /* * These bits disambiguate different calling conventions that share an * ELF machine type, bitness, and endianness */ #define __AUDIT_ARCH_CONVENTION_MASK 0x30000000 #define __AUDIT_ARCH_CONVENTION_MIPS64_N32 0x20000000 /* distinguish syscall tables */ #define __AUDIT_ARCH_64BIT 0x80000000 #define __AUDIT_ARCH_LE 0x40000000 #define AUDIT_ARCH_AARCH64 (EM_AARCH64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_ALPHA (EM_ALPHA|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_ARCOMPACT (EM_ARCOMPACT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_ARCOMPACTBE (EM_ARCOMPACT) #define AUDIT_ARCH_ARCV2 (EM_ARCV2|__AUDIT_ARCH_LE) #define AUDIT_ARCH_ARCV2BE (EM_ARCV2) #define AUDIT_ARCH_ARM (EM_ARM|__AUDIT_ARCH_LE) #define AUDIT_ARCH_ARMEB (EM_ARM) #define AUDIT_ARCH_C6X (EM_TI_C6000|__AUDIT_ARCH_LE) #define AUDIT_ARCH_C6XBE (EM_TI_C6000) #define AUDIT_ARCH_CRIS (EM_CRIS|__AUDIT_ARCH_LE) #define AUDIT_ARCH_CSKY (EM_CSKY|__AUDIT_ARCH_LE) #define AUDIT_ARCH_FRV (EM_FRV) #define AUDIT_ARCH_H8300 (EM_H8_300) #define AUDIT_ARCH_HEXAGON (EM_HEXAGON) #define AUDIT_ARCH_I386 (EM_386|__AUDIT_ARCH_LE) #define AUDIT_ARCH_IA64 (EM_IA_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_M32R (EM_M32R) #define AUDIT_ARCH_M68K (EM_68K) #define AUDIT_ARCH_MICROBLAZE (EM_MICROBLAZE) #define AUDIT_ARCH_MIPS (EM_MIPS) #define AUDIT_ARCH_MIPSEL (EM_MIPS|__AUDIT_ARCH_LE) #define AUDIT_ARCH_MIPS64 (EM_MIPS|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_MIPS64N32 (EM_MIPS|__AUDIT_ARCH_64BIT|\ __AUDIT_ARCH_CONVENTION_MIPS64_N32) #define AUDIT_ARCH_MIPSEL64 (EM_MIPS|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_MIPSEL64N32 (EM_MIPS|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE|\ __AUDIT_ARCH_CONVENTION_MIPS64_N32) #define AUDIT_ARCH_NDS32 (EM_NDS32|__AUDIT_ARCH_LE) #define AUDIT_ARCH_NDS32BE (EM_NDS32) #define AUDIT_ARCH_NIOS2 (EM_ALTERA_NIOS2|__AUDIT_ARCH_LE) #define AUDIT_ARCH_OPENRISC (EM_OPENRISC) #define AUDIT_ARCH_PARISC (EM_PARISC) #define AUDIT_ARCH_PARISC64 (EM_PARISC|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_PPC (EM_PPC) /* do not define AUDIT_ARCH_PPCLE since it is not supported by audit */ #define AUDIT_ARCH_PPC64 (EM_PPC64|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_PPC64LE (EM_PPC64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_RISCV32 (EM_RISCV|__AUDIT_ARCH_LE) #define AUDIT_ARCH_RISCV64 (EM_RISCV|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_S390 (EM_S390) #define AUDIT_ARCH_S390X (EM_S390|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_SH (EM_SH) #define AUDIT_ARCH_SHEL (EM_SH|__AUDIT_ARCH_LE) #define AUDIT_ARCH_SH64 (EM_SH|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_SHEL64 (EM_SH|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_SPARC (EM_SPARC) #define AUDIT_ARCH_SPARC64 (EM_SPARCV9|__AUDIT_ARCH_64BIT) #define AUDIT_ARCH_TILEGX (EM_TILEGX|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_TILEGX32 (EM_TILEGX|__AUDIT_ARCH_LE) #define AUDIT_ARCH_TILEPRO (EM_TILEPRO|__AUDIT_ARCH_LE) #define AUDIT_ARCH_UNICORE (EM_UNICORE|__AUDIT_ARCH_LE) #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) #define AUDIT_ARCH_XTENSA (EM_XTENSA) #define AUDIT_PERM_EXEC 1 #define AUDIT_PERM_WRITE 2 #define AUDIT_PERM_READ 4 #define AUDIT_PERM_ATTR 8 /* MAX_AUDIT_MESSAGE_LENGTH is set in audit:lib/libaudit.h as: * 8970 // PATH_MAX*2+CONTEXT_SIZE*2+11+256+1 * max header+body+tailer: 44 + 29 + 32 + 262 + 7 + pad */ #define AUDIT_MESSAGE_TEXT_MAX 8560 /* Multicast Netlink socket groups (default up to 32) */ enum audit_nlgrps { AUDIT_NLGRP_NONE, /* Group 0 not used */ AUDIT_NLGRP_READLOG, /* "best effort" read only socket */ __AUDIT_NLGRP_MAX }; #define AUDIT_NLGRP_MAX (__AUDIT_NLGRP_MAX - 1) struct audit_status { __u32 mask; /* Bit mask for valid entries */ __u32 enabled; /* 1 = enabled, 0 = disabled */ __u32 failure; /* Failure-to-log action */ __u32 pid; /* pid of auditd process */ __u32 rate_limit; /* messages rate limit (per second) */ __u32 backlog_limit; /* waiting messages limit */ __u32 lost; /* messages lost */ __u32 backlog; /* messages waiting in queue */ union { __u32 version; /* deprecated: audit api version num */ __u32 feature_bitmap; /* bitmap of kernel audit features */ }; __u32 backlog_wait_time;/* message queue wait timeout */ __u32 backlog_wait_time_actual;/* time spent waiting while * message limit exceeded */ }; struct audit_features { #define AUDIT_FEATURE_VERSION 1 __u32 vers; __u32 mask; /* which bits we are dealing with */ __u32 features; /* which feature to enable/disable */ __u32 lock; /* which features to lock */ }; #define AUDIT_FEATURE_ONLY_UNSET_LOGINUID 0 #define AUDIT_FEATURE_LOGINUID_IMMUTABLE 1 #define AUDIT_LAST_FEATURE AUDIT_FEATURE_LOGINUID_IMMUTABLE #define audit_feature_valid(x) ((x) >= 0 && (x) <= AUDIT_LAST_FEATURE) #define AUDIT_FEATURE_TO_MASK(x) (1 << ((x) & 31)) /* mask for __u32 */ struct audit_tty_status { __u32 enabled; /* 1 = enabled, 0 = disabled */ __u32 log_passwd; /* 1 = enabled, 0 = disabled */ }; #define AUDIT_UID_UNSET (unsigned int)-1 #define AUDIT_SID_UNSET ((unsigned int)-1) /* audit_rule_data supports filter rules with both integer and string * fields. It corresponds with AUDIT_ADD_RULE, AUDIT_DEL_RULE and * AUDIT_LIST_RULES requests. */ struct audit_rule_data { __u32 flags; /* AUDIT_PER_{TASK,CALL}, AUDIT_PREPEND */ __u32 action; /* AUDIT_NEVER, AUDIT_POSSIBLE, AUDIT_ALWAYS */ __u32 field_count; __u32 mask[AUDIT_BITMASK_SIZE]; /* syscall(s) affected */ __u32 fields[AUDIT_MAX_FIELDS]; __u32 values[AUDIT_MAX_FIELDS]; __u32 fieldflags[AUDIT_MAX_FIELDS]; __u32 buflen; /* total length of string fields */ char buf[0]; /* string fields buffer */ }; #endif /* _LINUX_AUDIT_H_ */ Patch #1 (audit-3.1.1-flex-array-workaround.patch): patching file bindings/swig/src/auditswig.i patching file lib/libaudit.h Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.XKJzWa + echo 'Patch #1 (audit-3.1.1-flex-array-workaround.patch):' + /usr/bin/patch --no-backup-if-mismatch -f -p1 --fuzz=0 + sed -i 's/ ids / /' audisp/plugins/Makefile.am + sed -i 's/ ids / /' audisp/plugins/Makefile.in + RPM_EC=0 ++ jobs -p + exit 0 + umask 022 + cd /builddir/build/BUILD + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd audit-3.1.1 + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + '[' '-flto=auto -ffat-lto-objectsx' '!=' x ']' ++ find . -type f -name configure -print + for file in $(find . -type f -name configure -print) + /usr/bin/sed -r --in-place=.backup 's/^char \(\*f\) \(\) = /__attribute__ ((used)) char (*f) () = /g' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed -r --in-place=.backup 's/^char \(\*f\) \(\);/__attribute__ ((used)) char (*f) ();/g' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed -r --in-place=.backup 's/^char \$2 \(\);/__attribute__ ((used)) char \$2 ();/g' ./configure + diff -u ./configure.backup ./configure --- ./configure.backup 2023-04-28 01:26:59.000000000 +0800 +++ ./configure 2023-05-03 23:31:38.762865858 +0800 @@ -1802,7 +1802,7 @@ #ifdef __cplusplus extern "C" #endif -char $2 (); +__attribute__ ((used)) char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ + /usr/bin/sed --in-place=.backup '1{$!N;$!N};$!N;s/int x = 1;\nint y = 0;\nint z;\nint nan;/volatile int x = 1; volatile int y = 0; volatile int z, nan;/;P;D' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed --in-place=.backup 's#^lt_cv_sys_global_symbol_to_cdecl=.*#lt_cv_sys_global_symbol_to_cdecl="sed -n -e '\''s/^T .* \\(.*\\)$/extern int \\1();/p'\'' -e '\''s/^$symcode* .* \\(.*\\)$/extern char \\1;/p'\''"#' ./configure + diff -u ./configure.backup ./configure --- ./configure.backup 2023-05-03 23:31:38.762865858 +0800 +++ ./configure 2023-05-03 23:31:38.777866460 +0800 @@ -7281,7 +7281,7 @@ # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="$SED -n"\ +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" @@ -18431,7 +18431,7 @@ compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' + '[' 1 = 1 ']' +++ dirname ./configure ++ find . -name config.guess -o -name config.sub + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) ++ basename ./config.sub + '[' -f /usr/lib/rpm/anolis/config.sub ']' + /usr/bin/rm -f ./config.sub ++ basename ./config.sub + /usr/bin/cp -fv /usr/lib/rpm/anolis/config.sub ./config.sub '/usr/lib/rpm/anolis/config.sub' -> './config.sub' + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) ++ basename ./config.guess + '[' -f /usr/lib/rpm/anolis/config.guess ']' + /usr/bin/rm -f ./config.guess ++ basename ./config.guess + /usr/bin/cp -fv /usr/lib/rpm/anolis/config.guess ./config.guess '/usr/lib/rpm/anolis/config.guess' -> './config.guess' + '[' 1 = 1 ']' + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld' ']' ++ find . -name ltmain.sh + for i in $(find . -name ltmain.sh) + /usr/bin/sed -i.backup -e 's~compiler_flags=$~compiler_flags="-Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld"~' ./ltmain.sh ++ dirname ./configure + /usr/lib/rpm/anolis/force-as-needed-for-shared-lib-in-libtool . Forcing -Wl,--as-needed in configure/libtool to workaround libtool bug (cf http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html) + /usr/lib/rpm/anolis/fix-libtool-ltmain-from-overlinking Fixing libtool's ltmain.sh to prevent overlinking ++ dirname ./configure + /usr/lib/rpm/anolis/fix-libtool-from-moving-options-after-libs . Fixing libtool inside configure to pass -Wl,xxx options before libraries + /usr/lib/rpm/anolis/fix-dlsearch-path-in-libtool . lib64 + ./configure --build=x86_64-Anolis-linux --host=x86_64-Anolis-linux --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-python=no --with-python3=yes --enable-gssapi-krb5=yes --with-arm --with-aarch64 --with-libcap-ng=yes --without-golang --enable-zos-remote --enable-systemd --enable-experimental --with-io_uring Configuring auditd checking build system type... x86_64-Anolis-linux-gnu checking host system type... x86_64-Anolis-linux-gnu checking target system type... x86_64-Anolis-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a race-free 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 print strings... printf checking whether make supports the include directive... yes (GNU style) checking for x86_64-Anolis-linux-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 the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /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 how to convert x86_64-Anolis-linux-gnu file names to x86_64-Anolis-linux-gnu format... func_convert_file_noop checking how to convert x86_64-Anolis-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for x86_64-Anolis-linux-file... no checking for file... file checking for x86_64-Anolis-linux-objdump... no checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for x86_64-Anolis-linux-dlltool... no checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for x86_64-Anolis-linux-ar... no checking for ar... ar checking for archiver @FILE support... @ checking for x86_64-Anolis-linux-strip... no checking for strip... strip checking for x86_64-Anolis-linux-ranlib... no checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ./configure: line 7287: -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p': No such file or directory ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for x86_64-Anolis-linux-mt... no checking for mt... no checking if : is a manifest tool... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for sys/time.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc 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... yes checking for sys/inotify.h... yes checking for sys/epoll.h... yes checking for sys/event.h... no checking for port.h... no checking for poll.h... yes checking for sys/timerfd.h... yes checking for sys/select.h... yes checking for sys/eventfd.h... yes checking for sys/signalfd.h... yes checking for linux/aio_abi.h... yes checking for linux/fs.h... yes checking for inotify_init... yes checking for epoll_ctl... yes checking for kqueue... no checking for port_create... no checking for poll... yes checking for select... yes checking for eventfd... yes checking for signalfd... yes checking for clock_gettime... yes checking for nanosleep... yes checking for __kernel_rwf_t... yes checking for library containing floor... -lm . Checking for programs checking for x86_64-Anolis-linux-gcc... (cached) gcc checking whether the compiler supports GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to enable C11 features... (cached) none needed checking whether gcc understands -c and -o together... (cached) yes checking dependency style of gcc... (cached) none checking for gawk... (cached) gawk checking how to run the C preprocessor... gcc -E checking for gcc... gcc checking whether the compiler supports GNU C... (cached) yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... (cached) none needed checking whether gcc understands -c and -o together... (cached) yes checking dependency style of gcc... (cached) none checking how to run the C preprocessor... gcc -E . Checking for header files checking size of unsigned int... 4 checking size of unsigned long... 8 checking for gcc options needed to detect all undeclared functions... none needed checking whether AUDIT_FEATURE_VERSION is declared... yes checking for struct audit_status.feature_bitmap... yes checking whether AUDIT_VERSION_BACKLOG_WAIT_TIME is declared... yes checking whether AUDIT_STATUS_BACKLOG_WAIT_TIME is declared... yes checking whether AUDIT_STATUS_BACKLOG_WAIT_TIME_ACTUAL is declared... yes checking whether ADDR_NO_RANDOMIZE is declared... yes checking for posix_fallocate... yes checking for signalfd... (cached) yes checking for rawmemchr... yes checking __attr_access support... yes checking for library containing pthread_yield... no checking whether to create python bindings... no checking whether to create python3 bindings... investigating checking for python3-config... /usr/bin/python3-config Python3 bindings WILL be built checking for python3... /usr/bin/python3 checking for swig... swig checking whether to create Go language bindings... no checking whether to include auditd network listener support... yes checking for lber.h... yes checking for ber_free in -llber... yes checking whether to include audisp ZOS remote plugin... yes checking for gss_acquire_cred in -lgssapi_krb5... yes checking for gssapi/gssapi.h... yes checking whether to enable systemd... yes checking whether to enable experimental options... yes checking for linux/fanotify.h... yes checking for -Wformat-truncation... yes yes checking whether to include arm eabi processor support... yes checking whether to include aarch64 processor support... yes checking whether to use apparmor... no checking whether to use libwrap... no checking whether to include io_uring support... yes checking for linux/ipx.h... yes checking for cap-ng.h... yes checking for capng_clear in -lcap-ng... yes checking whether to use libcap-ng... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating common/Makefile config.status: creating lib/Makefile config.status: creating lib/audit.pc config.status: creating lib/test/Makefile config.status: creating auparse/Makefile config.status: creating auparse/test/Makefile config.status: creating auparse/auparse.pc config.status: creating src/Makefile config.status: creating src/libev/Makefile config.status: creating src/test/Makefile config.status: creating docs/Makefile config.status: creating rules/Makefile config.status: creating init.d/Makefile config.status: creating audisp/Makefile config.status: creating audisp/plugins/Makefile config.status: creating audisp/plugins/af_unix/Makefile config.status: creating audisp/plugins/remote/Makefile config.status: creating audisp/plugins/zos-remote/Makefile config.status: creating audisp/plugins/syslog/Makefile config.status: creating audisp/plugins/ids/Makefile config.status: creating audisp/plugins/ids/rules/Makefile config.status: creating audisp/plugins/statsd/Makefile config.status: creating bindings/Makefile config.status: creating bindings/python/Makefile config.status: creating bindings/python/python2/Makefile config.status: creating bindings/python/python3/Makefile config.status: creating bindings/golang/Makefile config.status: creating bindings/swig/Makefile config.status: creating bindings/swig/src/Makefile config.status: creating bindings/swig/python/Makefile config.status: creating bindings/swig/python3/Makefile config.status: creating tools/Makefile config.status: creating tools/aulast/Makefile config.status: creating tools/aulastlog/Makefile config.status: creating tools/ausyscall/Makefile config.status: creating tools/auvirt/Makefile config.status: creating m4/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands . Auditd Version: 3.1.1 Target: x86_64-Anolis-linux-gnu Installation prefix: /usr Compiler: gcc Compiler flags: -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection __attr_access support: yes + /usr/bin/make -O -j64 V=1 VERBOSE=1 /usr/bin/make all-recursive Making all in common make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/common' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o strsplit.lo strsplit.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c strsplit.c -fPIC -DPIC -o .libs/strsplit.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c strsplit.c -o strsplit.o >/dev/null 2>&1 make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/common' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/common' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audit-fgets.lo audit-fgets.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audit-fgets.c -fPIC -DPIC -o .libs/audit-fgets.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audit-fgets.c -o audit-fgets.o >/dev/null 2>&1 make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/common' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/common' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIC -DPIC -D_GNU_SOURCE -g -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libaucommon.la audit-fgets.lo strsplit.lo libtool: link: ar cr .libs/libaucommon.a .libs/audit-fgets.o .libs/strsplit.o libtool: link: ranlib .libs/libaucommon.a libtool: link: ( cd ".libs" && rm -f "libaucommon.la" && ln -s "../libaucommon.la" "libaucommon.la" ) make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/common' Making all in lib make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="actiontab.h"' -g -O2 -c -o gen_actiontabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="fstypetab.h"' -g -O2 -c -o gen_fstypetabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="ftypetab.h"' -g -O2 -c -o gen_ftypetabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="flagtab.h"' -g -O2 -c -o gen_flagtabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="optab.h"' -g -O2 -c -o gen_optabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="msg_typetab.h"' -g -O2 -c -o gen_msg_typetabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="s390_table.h"' -g -O2 -c -o gen_s390_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="x86_64_table.h"' -g -O2 -c -o gen_x86_64_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="s390x_table.h"' -g -O2 -c -o gen_s390x_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="arm_table.h"' -g -O2 -c -o gen_arm_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="aarch64_table.h"' -g -O2 -c -o gen_aarch64_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="machinetab.h"' -g -O2 -c -o gen_machinetabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="errtab.h"' -g -O2 -c -o gen_errtabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="i386_table.h"' -g -O2 -c -o gen_i386_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="fieldtab.h"' -g -O2 -c -o gen_fieldtabs_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="ppc_table.h"' -g -O2 -c -o gen_ppc_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common '-DTABLE_H="uringop_table.h"' -g -O2 -c -o gen_uringop_tables_h-gen_tables.o `test -f 'gen_tables.c' || echo './'`gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="actiontab.h"' -g -O2 -o gen_actiontabs_h gen_actiontabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"actiontab.h\" -g -O2 -o gen_actiontabs_h gen_actiontabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_actiontabs_h --lowercase --i2s --s2i action > actiontabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="fstypetab.h"' -g -O2 -o gen_fstypetabs_h gen_fstypetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"fstypetab.h\" -g -O2 -o gen_fstypetabs_h gen_fstypetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_fstypetabs_h --lowercase --i2s --s2i fstype > fstypetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ftypetab.h"' -g -O2 -o gen_ftypetabs_h gen_ftypetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ftypetab.h\" -g -O2 -o gen_ftypetabs_h gen_ftypetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="optab.h"' -g -O2 -o gen_optabs_h gen_optabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"optab.h\" -g -O2 -o gen_optabs_h gen_optabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_ftypetabs_h --lowercase --i2s --s2i ftype > ftypetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_optabs_h --i2s op > optabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="flagtab.h"' -g -O2 -o gen_flagtabs_h gen_flagtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"flagtab.h\" -g -O2 -o gen_flagtabs_h gen_flagtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="x86_64_table.h"' -g -O2 -o gen_x86_64_tables_h gen_x86_64_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"x86_64_table.h\" -g -O2 -o gen_x86_64_tables_h gen_x86_64_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="msg_typetab.h"' -g -O2 -o gen_msg_typetabs_h gen_msg_typetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"msg_typetab.h\" -g -O2 -o gen_msg_typetabs_h gen_msg_typetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_flagtabs_h --lowercase --i2s --s2i flag > flagtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_x86_64_tables_h --lowercase --i2s --s2i x86_64_syscall > x86_64_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_msg_typetabs_h --uppercase --i2s --s2i msg_type > msg_typetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="s390_table.h"' -g -O2 -o gen_s390_tables_h gen_s390_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"s390_table.h\" -g -O2 -o gen_s390_tables_h gen_s390_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="arm_table.h"' -g -O2 -o gen_arm_tables_h gen_arm_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"arm_table.h\" -g -O2 -o gen_arm_tables_h gen_arm_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_s390_tables_h --lowercase --i2s --s2i s390_syscall > s390_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_arm_tables_h --lowercase --i2s --s2i arm_syscall > arm_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="s390x_table.h"' -g -O2 -o gen_s390x_tables_h gen_s390x_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"s390x_table.h\" -g -O2 -o gen_s390x_tables_h gen_s390x_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="aarch64_table.h"' -g -O2 -o gen_aarch64_tables_h gen_aarch64_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"aarch64_table.h\" -g -O2 -o gen_aarch64_tables_h gen_aarch64_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_s390x_tables_h --lowercase --i2s --s2i s390x_syscall > s390x_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_aarch64_tables_h --lowercase --i2s --s2i aarch64_syscall > aarch64_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="machinetab.h"' -g -O2 -o gen_machinetabs_h gen_machinetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"machinetab.h\" -g -O2 -o gen_machinetabs_h gen_machinetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_machinetabs_h --duplicate-ints --lowercase --i2s --s2i machine \ > machinetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="errtab.h"' -g -O2 -o gen_errtabs_h gen_errtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"errtab.h\" -g -O2 -o gen_errtabs_h gen_errtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="i386_table.h"' -g -O2 -o gen_i386_tables_h gen_i386_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"i386_table.h\" -g -O2 -o gen_i386_tables_h gen_i386_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="fieldtab.h"' -g -O2 -o gen_fieldtabs_h gen_fieldtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"fieldtab.h\" -g -O2 -o gen_fieldtabs_h gen_fieldtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_errtabs_h --duplicate-ints --uppercase --i2s --s2i err > errtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_fieldtabs_h --duplicate-ints --lowercase --i2s --s2i field > fieldtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_i386_tables_h --duplicate-ints --lowercase --i2s --s2i \ i386_syscall > i386_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="uringop_table.h"' -g -O2 -o gen_uringop_tables_h gen_uringop_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"uringop_table.h\" -g -O2 -o gen_uringop_tables_h gen_uringop_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_uringop_tables_h --lowercase --i2s --s2i uringop > uringop_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ppc_table.h"' -g -O2 -o gen_ppc_tables_h gen_ppc_tables_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ppc_table.h\" -g -O2 -o gen_ppc_tables_h gen_ppc_tables_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' ./gen_ppc_tables_h --lowercase --i2s --s2i ppc_syscall > ppc_tables.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' /usr/bin/make all-recursive Making all in test make[4]: Nothing to be done for 'all'. make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o message.lo message.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c message.c -fPIC -DPIC -o .libs/message.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c message.c -o message.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o deprecated.lo deprecated.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c deprecated.c -fPIC -DPIC -o .libs/deprecated.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c deprecated.c -o deprecated.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o netlink.lo netlink.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c netlink.c -fPIC -DPIC -o .libs/netlink.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c netlink.c -o netlink.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audit_logging.lo audit_logging.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audit_logging.c -fPIC -DPIC -o .libs/audit_logging.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audit_logging.c -o audit_logging.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o lookup_table.lo lookup_table.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c lookup_table.c -fPIC -DPIC -o .libs/lookup_table.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c lookup_table.c -o lookup_table.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libaudit.lo libaudit.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c libaudit.c -fPIC -DPIC -o .libs/libaudit.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../auparse -I../common -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c libaudit.c -o libaudit.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIC -DPIC -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -version-info 1:0 -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libaudit.la -rpath /usr/lib64 libaudit.lo message.lo netlink.lo lookup_table.lo audit_logging.lo deprecated.lo -lcap-ng ../common/libaucommon.la libtool: link: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/libaudit.o .libs/message.o .libs/netlink.o .libs/lookup_table.o .libs/audit_logging.o .libs/deprecated.o -Wl,--whole-archive ../common/.libs/libaucommon.a -Wl,--no-whole-archive -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -lcap-ng -Wl,-soname -Wl,libaudit.so.1 -o .libs/libaudit.so.1.0.0 libtool: link: (cd ".libs" && rm -f "libaudit.so.1" && ln -s "libaudit.so.1.0.0" "libaudit.so.1") libtool: link: (cd ".libs" && rm -f "libaudit.so" && ln -s "libaudit.so.1.0.0" "libaudit.so") libtool: link: (cd .libs/libaudit.lax/libaucommon.a && ar x "/builddir/build/BUILD/audit-3.1.1/lib/../common/.libs/libaucommon.a") libtool: link: ar cr .libs/libaudit.a libaudit.o message.o netlink.o lookup_table.o audit_logging.o deprecated.o .libs/libaudit.lax/libaucommon.a/audit-fgets.o .libs/libaudit.lax/libaucommon.a/strsplit.o libtool: link: ranlib .libs/libaudit.a libtool: link: rm -fr .libs/libaudit.lax libtool: link: ( cd ".libs" && rm -f "libaudit.la" && ln -s "../libaudit.la" "libaudit.la" ) make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' Making all in auparse make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="captab.h"' -g -O2 -c -o gen_captabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ioctlreqtab.h"' -g -O2 -c -o gen_ioctlreqtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="clone-flagtab.h"' -g -O2 -c -o gen_clone_flagtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' ../lib/gen_tables.c:89:22: warning: overflow in conversion from 'long long unsigned int' to 'int' changes value from '4294967296' to '0' [-Woverflow] 89 | #define _S(VAL, S) { (VAL), (S), 0, 0 }, | ^ ./clone-flagtab.h:47:1: note: in expansion of macro '_S' 47 | _S(0x100000000ULL, "CLONE_CLEAR_SIGHAND") | ^~ make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="epoll_ctl.h"' -g -O2 -c -o gen_epoll_ctls_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ipctab.h"' -g -O2 -c -o gen_ipctabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="rlimittab.h"' -g -O2 -c -o gen_rlimit_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="seektab.h"' -g -O2 -c -o gen_seektabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="umounttab.h"' -g -O2 -c -o gen_umounttabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="signaltab.h"' -g -O2 -c -o gen_signals_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="pktoptnametab.h"' -g -O2 -c -o gen_pktoptnametabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="normalize_obj_kind_map.h"' -g -O2 -c -o gen_normalize_obj_kind_map-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="tcpoptnametab.h"' -g -O2 -c -o gen_tcpoptnametabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="prottab.h"' -g -O2 -c -o gen_prottabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="../auparse/flagtab.h"' -g -O2 -c -o gen_flagtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="inethooktab.h"' -g -O2 -c -o gen_inethooktabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="accesstab.h"' -g -O2 -c -o gen_accesstabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="mmaptab.h"' -g -O2 -c -o gen_mmaptabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ipccmdtab.h"' -g -O2 -c -o gen_ipccmdtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="typetab.h"' -g -O2 -c -o gen_typetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ip6optnametab.h"' -g -O2 -c -o gen_ip6optnametabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="clocktab.h"' -g -O2 -c -o gen_clock_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="famtab.h"' -g -O2 -c -o gen_famtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="fcntl-cmdtab.h"' -g -O2 -c -o gen_fcntl_cmdtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="bpftab.h"' -g -O2 -c -o gen_bpftabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="prctl-opt-tab.h"' -g -O2 -c -o gen_prctl_opttabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="icmptypetab.h"' -g -O2 -c -o gen_icmptypetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="nfprototab.h"' -g -O2 -c -o gen_nfprototabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="persontab.h"' -g -O2 -c -o gen_persontabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="mounttab.h"' -g -O2 -c -o gen_mounttabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ipoptnametab.h"' -g -O2 -c -o gen_ipoptnametabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="shm_modetab.h"' -g -O2 -c -o gen_shm_modetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="schedtab.h"' -g -O2 -c -o gen_schedtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="open-flagtab.h"' -g -O2 -c -o gen_open_flagtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="ptracetab.h"' -g -O2 -c -o gen_ptracetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="seccomptab.h"' -g -O2 -c -o gen_seccomptabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="socktypetab.h"' -g -O2 -c -o gen_socktypetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="recvtab.h"' -g -O2 -c -o gen_recvtabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="netactiontab.h"' -g -O2 -c -o gen_netactiontabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="socktab.h"' -g -O2 -c -o gen_socktabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="sockleveltab.h"' -g -O2 -c -o gen_sockleveltabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="sockoptnametab.h"' -g -O2 -c -o gen_sockoptnametabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="openat2-resolvetab.h"' -g -O2 -c -o gen_openat2_resolvetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="captab.h"' -g -O2 -o gen_captabs_h gen_captabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"captab.h\" -g -O2 -o gen_captabs_h gen_captabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ioctlreqtab.h"' -g -O2 -o gen_ioctlreqtabs_h gen_ioctlreqtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ioctlreqtab.h\" -g -O2 -o gen_ioctlreqtabs_h gen_ioctlreqtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="clone-flagtab.h"' -g -O2 -o gen_clone-flagtabs_h gen_clone_flagtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"clone-flagtab.h\" -g -O2 -o gen_clone-flagtabs_h gen_clone_flagtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="normalize_record_map.h"' -g -O2 -c -o gen_normalize_record_map-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="normalize_evtypetab.h"' -g -O2 -c -o gen_normalize_evtypetabs_h-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common '-DTABLE_H="normalize_syscall_map.h"' -g -O2 -c -o gen_normalize_syscall_map-gen_tables.o `test -f '../lib/gen_tables.c' || echo './'`../lib/gen_tables.c make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_captabs_h --i2s cap > captabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_clone-flagtabs_h --i2s-transtab clone_flag > clone-flagtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ioctlreqtabs_h --i2s ioctlreq > ioctlreqtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="epoll_ctl.h"' -g -O2 -o gen_epoll_ctls_h gen_epoll_ctls_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"epoll_ctl.h\" -g -O2 -o gen_epoll_ctls_h gen_epoll_ctls_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="umounttab.h"' -g -O2 -o gen_umounttabs_h gen_umounttabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"umounttab.h\" -g -O2 -o gen_umounttabs_h gen_umounttabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="rlimittab.h"' -g -O2 -o gen_rlimit_h gen_rlimit_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"rlimittab.h\" -g -O2 -o gen_rlimit_h gen_rlimit_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="signaltab.h"' -g -O2 -o gen_signals_h gen_signals_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"signaltab.h\" -g -O2 -o gen_signals_h gen_signals_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_epoll_ctls_h --i2s epoll_ctl > epoll_ctls.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_umounttabs_h --i2s-transtab umount > umounttabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_rlimit_h --i2s rlimit > rlimittabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ipctab.h"' -g -O2 -o gen_ipctabs_h gen_ipctabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ipctab.h\" -g -O2 -o gen_ipctabs_h gen_ipctabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_signals_h --i2s signal > signaltabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="seektab.h"' -g -O2 -o gen_seektabs_h gen_seektabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"seektab.h\" -g -O2 -o gen_seektabs_h gen_seektabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ipctabs_h --i2s ipc > ipctabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_seektabs_h --i2s seek > seektabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="tcpoptnametab.h"' -g -O2 -o gen_tcpoptnametabs_h gen_tcpoptnametabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"tcpoptnametab.h\" -g -O2 -o gen_tcpoptnametabs_h gen_tcpoptnametabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_tcpoptnametabs_h --i2s tcpoptname > tcpoptnametabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="normalize_obj_kind_map.h"' -g -O2 -o gen_normalize_obj_kind_map gen_normalize_obj_kind_map-gen_tables.o libtool: link: gcc -DTABLE_H=\"normalize_obj_kind_map.h\" -g -O2 -o gen_normalize_obj_kind_map gen_normalize_obj_kind_map-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="pktoptnametab.h"' -g -O2 -o gen_pktoptnametabs_h gen_pktoptnametabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"pktoptnametab.h\" -g -O2 -o gen_pktoptnametabs_h gen_pktoptnametabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_normalize_obj_kind_map --lowercase --i2s normalize_obj_kind_map > normalize_obj_kind_maps.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_pktoptnametabs_h --i2s pktoptname > pktoptnametabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="inethooktab.h"' -g -O2 -o gen_inethooktabs_h gen_inethooktabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"inethooktab.h\" -g -O2 -o gen_inethooktabs_h gen_inethooktabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="prottab.h"' -g -O2 -o gen_prottabs_h gen_prottabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"prottab.h\" -g -O2 -o gen_prottabs_h gen_prottabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="../auparse/flagtab.h"' -g -O2 -o gen_flagtabs_h gen_flagtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"../auparse/flagtab.h\" -g -O2 -o gen_flagtabs_h gen_flagtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_prottabs_h --i2s-transtab prot > prottabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_inethooktabs_h --i2s inethook > inethooktabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_flagtabs_h --i2s-transtab flag > flagtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ipccmdtab.h"' -g -O2 -o gen_ipccmdtabs_h gen_ipccmdtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ipccmdtab.h\" -g -O2 -o gen_ipccmdtabs_h gen_ipccmdtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="mmaptab.h"' -g -O2 -o gen_mmaptabs_h gen_mmaptabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"mmaptab.h\" -g -O2 -o gen_mmaptabs_h gen_mmaptabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="accesstab.h"' -g -O2 -o gen_accesstabs_h gen_accesstabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"accesstab.h\" -g -O2 -o gen_accesstabs_h gen_accesstabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="typetab.h"' -g -O2 -o gen_typetabs_h gen_typetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"typetab.h\" -g -O2 -o gen_typetabs_h gen_typetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ipccmdtabs_h --i2s-transtab ipccmd > ipccmdtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="bpftab.h"' -g -O2 -o gen_bpftabs_h gen_bpftabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"bpftab.h\" -g -O2 -o gen_bpftabs_h gen_bpftabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="famtab.h"' -g -O2 -o gen_famtabs_h gen_famtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"famtab.h\" -g -O2 -o gen_famtabs_h gen_famtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="prctl-opt-tab.h"' -g -O2 -o gen_prctl_opttabs_h gen_prctl_opttabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"prctl-opt-tab.h\" -g -O2 -o gen_prctl_opttabs_h gen_prctl_opttabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_mmaptabs_h --i2s-transtab mmap > mmaptabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ip6optnametab.h"' -g -O2 -o gen_ip6optnametabs_h gen_ip6optnametabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ip6optnametab.h\" -g -O2 -o gen_ip6optnametabs_h gen_ip6optnametabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="icmptypetab.h"' -g -O2 -o gen_icmptypetabs_h gen_icmptypetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"icmptypetab.h\" -g -O2 -o gen_icmptypetabs_h gen_icmptypetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_accesstabs_h --i2s-transtab access > accesstabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="clocktab.h"' -g -O2 -o gen_clock_h gen_clock_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"clocktab.h\" -g -O2 -o gen_clock_h gen_clock_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_typetabs_h --s2i type > typetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_famtabs_h --i2s fam > famtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_prctl_opttabs_h --i2s prctl_opt > prctl_opttabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_bpftabs_h --i2s bpf > bpftabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_clock_h --i2s clock > clocktabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="nfprototab.h"' -g -O2 -o gen_nfprototabs_h gen_nfprototabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"nfprototab.h\" -g -O2 -o gen_nfprototabs_h gen_nfprototabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="fcntl-cmdtab.h"' -g -O2 -o gen_fcntl-cmdtabs_h gen_fcntl_cmdtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"fcntl-cmdtab.h\" -g -O2 -o gen_fcntl-cmdtabs_h gen_fcntl_cmdtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="persontab.h"' -g -O2 -o gen_persontabs_h gen_persontabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"persontab.h\" -g -O2 -o gen_persontabs_h gen_persontabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_icmptypetabs_h --i2s icmptype > icmptypetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="open-flagtab.h"' -g -O2 -o gen_open-flagtabs_h gen_open_flagtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"open-flagtab.h\" -g -O2 -o gen_open-flagtabs_h gen_open_flagtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ip6optnametabs_h --i2s ip6optname > ip6optnametabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_nfprototabs_h --i2s nfproto > nfprototabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_fcntl-cmdtabs_h --i2s fcntl > fcntl-cmdtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ipoptnametab.h"' -g -O2 -o gen_ipoptnametabs_h gen_ipoptnametabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ipoptnametab.h\" -g -O2 -o gen_ipoptnametabs_h gen_ipoptnametabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_persontabs_h --i2s person > persontabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_open-flagtabs_h --i2s-transtab open_flag > open-flagtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="shm_modetab.h"' -g -O2 -o gen_shm_modetabs_h gen_shm_modetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"shm_modetab.h\" -g -O2 -o gen_shm_modetabs_h gen_shm_modetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ipoptnametabs_h --i2s ipoptname > ipoptnametabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_shm_modetabs_h --i2s-transtab shm_mode > shm_modetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="mounttab.h"' -g -O2 -o gen_mounttabs_h gen_mounttabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"mounttab.h\" -g -O2 -o gen_mounttabs_h gen_mounttabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="netactiontab.h"' -g -O2 -o gen_netactiontabs_h gen_netactiontabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"netactiontab.h\" -g -O2 -o gen_netactiontabs_h gen_netactiontabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="recvtab.h"' -g -O2 -o gen_recvtabs_h gen_recvtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"recvtab.h\" -g -O2 -o gen_recvtabs_h gen_recvtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="socktab.h"' -g -O2 -o gen_socktabs_h gen_socktabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"socktab.h\" -g -O2 -o gen_socktabs_h gen_socktabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_mounttabs_h --i2s-transtab mount > mounttabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="schedtab.h"' -g -O2 -o gen_schedtabs_h gen_schedtabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"schedtab.h\" -g -O2 -o gen_schedtabs_h gen_schedtabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="seccomptab.h"' -g -O2 -o gen_seccomptabs_h gen_seccomptabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"seccomptab.h\" -g -O2 -o gen_seccomptabs_h gen_seccomptabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_netactiontabs_h --i2s netaction > netactiontabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="socktypetab.h"' -g -O2 -o gen_socktypetabs_h gen_socktypetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"socktypetab.h\" -g -O2 -o gen_socktypetabs_h gen_socktypetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_recvtabs_h --i2s-transtab recv > recvtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="ptracetab.h"' -g -O2 -o gen_ptracetabs_h gen_ptracetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"ptracetab.h\" -g -O2 -o gen_ptracetabs_h gen_ptracetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_socktabs_h --i2s sock > socktabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="openat2-resolvetab.h"' -g -O2 -o gen_openat2-resolvetabs_h gen_openat2_resolvetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"openat2-resolvetab.h\" -g -O2 -o gen_openat2-resolvetabs_h gen_openat2_resolvetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_schedtabs_h --i2s sched > schedtabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_seccomptabs_h --i2s seccomp > seccomptabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_ptracetabs_h --i2s ptrace > ptracetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_socktypetabs_h --i2s sock_type > socktypetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="sockleveltab.h"' -g -O2 -o gen_sockleveltabs_h gen_sockleveltabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"sockleveltab.h\" -g -O2 -o gen_sockleveltabs_h gen_sockleveltabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_openat2-resolvetabs_h --i2s-transtab openat2_resolve > openat2-resolvetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_sockleveltabs_h --i2s socklevel > sockleveltabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="normalize_evtypetab.h"' -g -O2 -o gen_normalize_evtypetabs_h gen_normalize_evtypetabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"normalize_evtypetab.h\" -g -O2 -o gen_normalize_evtypetabs_h gen_normalize_evtypetabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="normalize_record_map.h"' -g -O2 -o gen_normalize_record_map gen_normalize_record_map-gen_tables.o libtool: link: gcc -DTABLE_H=\"normalize_record_map.h\" -g -O2 -o gen_normalize_record_map gen_normalize_record_map-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_normalize_evtypetabs_h --i2s evtype > normalize_evtypetabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="sockoptnametab.h"' -g -O2 -o gen_sockoptnametabs_h gen_sockoptnametabs_h-gen_tables.o libtool: link: gcc -DTABLE_H=\"sockoptnametab.h\" -g -O2 -o gen_sockoptnametabs_h gen_sockoptnametabs_h-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_normalize_record_map --lowercase --i2s normalize_record_map > normalize_record_maps.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_sockoptnametabs_h --i2s sockoptname > sockoptnametabs.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc '-DTABLE_H="normalize_syscall_map.h"' -g -O2 -o gen_normalize_syscall_map gen_normalize_syscall_map-gen_tables.o libtool: link: gcc -DTABLE_H=\"normalize_syscall_map.h\" -g -O2 -o gen_normalize_syscall_map gen_normalize_syscall_map-gen_tables.o make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' ./gen_normalize_syscall_map --lowercase --s2i normalize_syscall_map > normalize_syscall_maps.h make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' /usr/bin/make all-recursive Making all in test make[4]: Nothing to be done for 'all'. make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o normalize-llist.lo normalize-llist.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c normalize-llist.c -fPIC -DPIC -o .libs/normalize-llist.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c normalize-llist.c -o normalize-llist.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o message.lo message.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c message.c -fPIC -DPIC -o .libs/message.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c message.c -o message.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o lru.lo lru.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c lru.c -fPIC -DPIC -o .libs/lru.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c lru.c -o lru.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o nvlist.lo nvlist.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c nvlist.c -fPIC -DPIC -o .libs/nvlist.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c nvlist.c -o nvlist.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o data_buf.lo data_buf.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c data_buf.c -fPIC -DPIC -o .libs/data_buf.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c data_buf.c -o data_buf.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-config.lo auditd-config.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c auditd-config.c -fPIC -DPIC -o .libs/auditd-config.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c auditd-config.c -o auditd-config.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ellist.lo ellist.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ellist.c -fPIC -DPIC -o .libs/ellist.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ellist.c -o ellist.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o expression.lo expression.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c expression.c -fPIC -DPIC -o .libs/expression.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c expression.c -o expression.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auparse.lo auparse.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c auparse.c -fPIC -DPIC -o .libs/auparse.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c auparse.c -o auparse.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o normalize.lo normalize.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c normalize.c -fPIC -DPIC -o .libs/normalize.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c normalize.c -o normalize.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o interpret.lo interpret.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c interpret.c -fPIC -DPIC -o .libs/interpret.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I../src -I../lib -I../common -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c interpret.c -o interpret.o >/dev/null 2>&1 make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libauparse.la -rpath /usr/lib64 lru.lo interpret.lo nvlist.lo ellist.lo auparse.lo auditd-config.lo message.lo data_buf.lo expression.lo normalize.lo normalize-llist.lo ../lib/libaudit.la ../common/libaucommon.la libtool: link: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/lru.o .libs/interpret.o .libs/nvlist.o .libs/ellist.o .libs/auparse.o .libs/auditd-config.o .libs/message.o .libs/data_buf.o .libs/expression.o .libs/normalize.o .libs/normalize-llist.o -Wl,--whole-archive ../common/.libs/libaucommon.a -Wl,--no-whole-archive -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -g -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -Wl,-rpath -Wl,/builddir/build/BUILD/audit-3.1.1/lib/.libs ../lib/.libs/libaudit.so -lcap-ng -Wl,-soname -Wl,libauparse.so.0 -o .libs/libauparse.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libauparse.so.0" && ln -s "libauparse.so.0.0.0" "libauparse.so.0") libtool: link: (cd ".libs" && rm -f "libauparse.so" && ln -s "libauparse.so.0.0.0" "libauparse.so") libtool: link: (cd .libs/libauparse.lax/libaucommon.a && ar x "/builddir/build/BUILD/audit-3.1.1/auparse/../common/.libs/libaucommon.a") libtool: link: ar cr .libs/libauparse.a lru.o interpret.o nvlist.o ellist.o auparse.o auditd-config.o message.o data_buf.o expression.o normalize.o normalize-llist.o .libs/libauparse.lax/libaucommon.a/audit-fgets.o .libs/libauparse.lax/libaucommon.a/strsplit.o libtool: link: ranlib .libs/libauparse.a libtool: link: rm -fr .libs/libauparse.lax libtool: link: ( cd ".libs" && rm -f "libauparse.la" && ln -s "../libauparse.la" "libauparse.la" ) make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' Making all in audisp Making all in plugins Making all in af_unix make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_af_unix-audisp-af_unix.o `test -f 'audisp-af_unix.c' || echo './'`audisp-af_unix.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' /bin/sh ../../../libtool --tag=CC --mode=link gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-af_unix audisp_af_unix-audisp-af_unix.o -lcap-ng ../../../common/libaucommon.la libtool: link: gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-af_unix audisp_af_unix-audisp-af_unix.o -lcap-ng ../../../common/.libs/libaucommon.a make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' Making all in remote make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_remote-queue.o `test -f 'queue.c' || echo './'`queue.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_remote-remote-config.o `test -f 'remote-config.c' || echo './'`remote-config.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_remote-audisp-remote.o `test -f 'audisp-remote.c' || echo './'`audisp-remote.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' /bin/sh ../../../libtool --tag=CC --mode=link gcc -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-remote audisp_remote-audisp-remote.o audisp_remote-remote-config.o audisp_remote-queue.o -lcap-ng -lgssapi_krb5 -lkrb5 ../../../common/libaucommon.la libtool: link: gcc -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-remote audisp_remote-audisp-remote.o audisp_remote-remote-config.o audisp_remote-queue.o -lcap-ng -lgssapi_krb5 -lkrb5 ../../../common/.libs/libaucommon.a make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' Making all in syslog make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -I../../../auparse -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_syslog-audisp-syslog.o `test -f 'audisp-syslog.c' || echo './'`audisp-syslog.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' /bin/sh ../../../libtool --tag=CC --mode=link gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-syslog audisp_syslog-audisp-syslog.o -lcap-ng ../../../common/libaucommon.la ../../../auparse/libauparse.la libtool: link: gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wundef -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/audisp-syslog audisp_syslog-audisp-syslog.o ../../../common/.libs/libaucommon.a ../../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' Making all in statsd make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audisp_statsd-audisp-statsd.o `test -f 'audisp-statsd.c' || echo './'`audisp-statsd.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' /bin/sh ../../../libtool --tag=CC --mode=link gcc -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audisp-statsd audisp_statsd-audisp-statsd.o ../../../auparse/libauparse.la ../../../lib/libaudit.la libtool: link: gcc -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/audisp-statsd audisp_statsd-audisp-statsd.o ../../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so ../../../lib/.libs/libaudit.so -lcap-ng make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' Making all in zos-remote make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audispd_zos_remote-zos-remote-queue.o `test -f 'zos-remote-queue.c' || echo './'`zos-remote-queue.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audispd_zos_remote-zos-remote-log.o `test -f 'zos-remote-log.c' || echo './'`zos-remote-log.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audispd_zos_remote-zos-remote-config.o `test -f 'zos-remote-config.c' || echo './'`zos-remote-config.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audispd_zos_remote-zos-remote-plugin.o `test -f 'zos-remote-plugin.c' || echo './'`zos-remote-plugin.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../auparse -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o audispd_zos_remote-zos-remote-ldap.o `test -f 'zos-remote-ldap.c' || echo './'`zos-remote-ldap.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' /bin/sh ../../../libtool --tag=CC --mode=link gcc -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o audispd-zos-remote audispd_zos_remote-zos-remote-plugin.o audispd_zos_remote-zos-remote-log.o audispd_zos_remote-zos-remote-ldap.o audispd_zos_remote-zos-remote-config.o audispd_zos_remote-zos-remote-queue.o -lpthread -lldap -llber -lcap-ng ../../../auparse/libauparse.la libtool: link: gcc -W -Wall -Wundef -D_GNU_SOURCE -fPIE -DPIE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/audispd-zos-remote audispd_zos_remote-zos-remote-plugin.o audispd_zos_remote-zos-remote-log.o audispd_zos_remote-zos-remote-ldap.o audispd_zos_remote-zos-remote-config.o audispd_zos_remote-zos-remote-queue.o -lpthread -lldap -llber ../../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Nothing to be done for 'all-am'. make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libdisp_la-audispd-llist.lo `test -f 'audispd-llist.c' || echo './'`audispd-llist.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd-llist.c -fPIC -DPIC -o .libs/libdisp_la-audispd-llist.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd-llist.c -o libdisp_la-audispd-llist.o >/dev/null 2>&1 make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libdisp_la-queue.lo `test -f 'queue.c' || echo './'`queue.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c queue.c -fPIC -DPIC -o .libs/libdisp_la-queue.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c queue.c -o libdisp_la-queue.o >/dev/null 2>&1 make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libdisp_la-audispd-pconfig.lo `test -f 'audispd-pconfig.c' || echo './'`audispd-pconfig.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd-pconfig.c -fPIC -DPIC -o .libs/libdisp_la-audispd-pconfig.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd-pconfig.c -o libdisp_la-audispd-pconfig.o >/dev/null 2>&1 make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libdisp_la-audispd.lo `test -f 'audispd.c' || echo './'`audispd.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd.c -fPIC -DPIC -o .libs/libdisp_la-audispd.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -D_GNU_SOURCE -fPIC -DPIC -I.. -I../lib -I../src -I../src/libev -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audispd.c -o libdisp_la-audispd.o >/dev/null 2>&1 make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' /bin/sh ../libtool --tag=CC --mode=link gcc -fno-strict-aliasing -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -no-undefined -static -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libdisp.la libdisp_la-audispd.lo libdisp_la-audispd-pconfig.lo libdisp_la-queue.lo libdisp_la-audispd-llist.lo ../lib/libaudit.la libtool: link: ar cr .libs/libdisp.a libdisp_la-audispd.o libdisp_la-audispd-pconfig.o libdisp_la-queue.o libdisp_la-audispd-llist.o libtool: link: ranlib .libs/libdisp.a libtool: link: ( cd ".libs" && rm -f "libdisp.la" && ln -s "../libdisp.la" "libdisp.la" ) make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' Making all in src/libev make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/libev' /bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o event.lo event.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c event.c -fPIC -DPIC -o .libs/event.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c event.c -o event.o >/dev/null 2>&1 make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/libev' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/libev' /bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ev.lo ev.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ev.c -fPIC -DPIC -o .libs/ev.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../.. -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ev.c -o ev.o >/dev/null 2>&1 make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/libev' ev.c:2146:31: warning: 'ev_default_loop_ptr' initialized and declared 'extern' 2146 | EV_API_DECL struct ev_loop *ev_default_loop_ptr = 0; /* needs to be initialised to make it a definition despite extern */ | ^~~~~~~~~~~~~~~~~~~ In file included from ev.c:3108: ev_iouring.c: In function 'iouring_sqe_submit': ev_iouring.c:300:1: warning: no return statement in function returning non-void [-Wreturn-type] 300 | } | ^ In file included from ev.c:222: ev_iouring.c: In function 'iouring_fork': ev.h:180:20: warning: left-hand operand of comma expression has no effect [-Wunused-value] 180 | # define EV_A_ EV_A, /* a loop as first of multiple arguments */ | ^ ev.h:698:52: note: in definition of macro 'ev_io_set' 698 | #define ev_io_set(ev,fd_,events_) do { (ev)->fd = (fd_); (ev)->events = (events_) | EV__IOFDSET; } while (0) | ^~ ev_iouring.c:428:16: note: in expansion of macro 'EV_A_' 428 | ev_io_set (EV_A_ &iouring_tfd_w, iouring_tfd, EV_READ); | ^~~~~ ev.h:180:20: warning: left-hand operand of comma expression has no effect [-Wunused-value] 180 | # define EV_A_ EV_A, /* a loop as first of multiple arguments */ | ^ ev.h:698:70: note: in definition of macro 'ev_io_set' 698 | #define ev_io_set(ev,fd_,events_) do { (ev)->fd = (fd_); (ev)->events = (events_) | EV__IOFDSET; } while (0) | ^~ ev_iouring.c:428:16: note: in expansion of macro 'EV_A_' 428 | ev_io_set (EV_A_ &iouring_tfd_w, iouring_tfd, EV_READ); | ^~~~~ make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/libev' /bin/sh ../../libtool --tag=CC --mode=link gcc -fPIC -DPIC -g -fno-strict-aliasing -DNDEBUG -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -no-undefined -static -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libev.la ev.lo event.lo libtool: link: ar cr .libs/libev.a ev.o event.o libtool: link: ranlib .libs/libev.a libtool: link: ( cd ".libs" && rm -f "libev.la" && ln -s "../libev.la" "libev.la" ) make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/libev' Making all in src Making all in test make[3]: Nothing to be done for 'all'. make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditctl-auditctl-llist.o `test -f 'auditctl-llist.c' || echo './'`auditctl-llist.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditctl-delete_all.o `test -f 'delete_all.c' || echo './'`delete_all.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-nvpair.o ausearch-nvpair.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-dispatch.o `test -f 'auditd-dispatch.c' || echo './'`auditd-dispatch.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o delete_all.o delete_all.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-avc.o ausearch-avc.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-reconfig.o `test -f 'auditd-reconfig.c' || echo './'`auditd-reconfig.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-int.o ausearch-int.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-string.o ausearch-string.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditctl-llist.o auditctl-llist.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-sendmail.o `test -f 'auditd-sendmail.c' || echo './'`auditd-sendmail.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-match.o ausearch-match.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-llist.o ausearch-llist.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-checkpt.o ausearch-checkpt.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aureport.o aureport.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o autrace.o autrace.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-lol.o ausearch-lol.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch.o ausearch.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-time.o ausearch-time.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aureport-options.o aureport-options.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aureport-output.o aureport-output.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-lookup.o ausearch-lookup.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditctl-auditctl-listing.o `test -f 'auditctl-listing.c' || echo './'`auditctl-listing.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aureport-scan.o aureport-scan.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-report.o ausearch-report.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd.o `test -f 'auditd.c' || echo './'`auditd.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' auditd.c: In function 'reconfig_ready': auditd.c:585:9: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 585 | write(pipefds[1], msg, strlen(msg)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ auditd.c: In function 'pipe_handler': auditd.c:577:9: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result] 577 | read(pipefds[0], buf, sizeof(buf)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-options.o ausearch-options.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-listen.o `test -f 'auditd-listen.c' || echo './'`auditd-listen.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o autrace autrace.o delete_all.o auditctl-llist.o ../lib/libaudit.la libtool: link: gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/autrace autrace.o delete_all.o auditctl-llist.o ../lib/.libs/libaudit.so -lcap-ng make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-event.o `test -f 'auditd-event.c' || echo './'`auditd-event.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' auditd-event.c: In function 'fix_disk_permissions': auditd-event.c:1062:9: warning: ignoring return value of 'chown' declared with attribute 'warn_unused_result' [-Wunused-result] 1062 | chown(dir, 0, config->log_group ? config->log_group : 0); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditctl-auditctl.o `test -f 'auditctl.c' || echo './'`auditctl.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-auditd-config.o `test -f 'auditd-config.c' || echo './'`auditd-config.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auditd-config.o auditd-config.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I../lib -I../src/libev -I../auparse -I../audisp -I../common -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-parse.o ausearch-parse.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auditctl auditctl-auditctl.o auditctl-auditctl-llist.o auditctl-delete_all.o auditctl-auditctl-listing.o ../lib/libaudit.la ../auparse/libauparse.la ../common/libaucommon.la libtool: link: gcc -fPIE -DPIE -g -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/auditctl auditctl-auditctl.o auditctl-auditctl-llist.o auditctl-delete_all.o auditctl-auditctl-listing.o ../lib/.libs/libaudit.so ../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng ../common/.libs/libaucommon.a make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auditd auditd-auditd.o auditd-auditd-event.o auditd-auditd-config.o auditd-auditd-reconfig.o auditd-auditd-sendmail.o auditd-auditd-dispatch.o auditd-auditd-listen.o ../src/libev/libev.la ../audisp/libdisp.la ../lib/libaudit.la ../auparse/libauparse.la -lpthread -lm -lgssapi_krb5 -lkrb5 ../common/libaucommon.la libtool: link: gcc -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/auditd auditd-auditd.o auditd-auditd-event.o auditd-auditd-config.o auditd-auditd-reconfig.o auditd-auditd-sendmail.o auditd-auditd-dispatch.o auditd-auditd-listen.o ../src/libev/.libs/libev.a ../audisp/.libs/libdisp.a ../lib/.libs/libaudit.so ../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng -lpthread -lm -lgssapi_krb5 -lkrb5 ../common/.libs/libaucommon.a -pthread make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o aureport aureport.o auditd-config.o ausearch-llist.o aureport-options.o ausearch-string.o ausearch-parse.o aureport-scan.o aureport-output.o ausearch-lookup.o ausearch-int.o ausearch-time.o ausearch-nvpair.o ausearch-avc.o ausearch-lol.o ../lib/libaudit.la ../auparse/libauparse.la ../common/libaucommon.la libtool: link: gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/aureport aureport.o auditd-config.o ausearch-llist.o aureport-options.o ausearch-string.o ausearch-parse.o aureport-scan.o aureport-output.o ausearch-lookup.o ausearch-int.o ausearch-time.o ausearch-nvpair.o ausearch-avc.o ausearch-lol.o ../lib/.libs/libaudit.so ../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng ../common/.libs/libaucommon.a make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o ausearch ausearch.o auditd-config.o ausearch-llist.o ausearch-options.o ausearch-report.o ausearch-match.o ausearch-string.o ausearch-parse.o ausearch-int.o ausearch-time.o ausearch-nvpair.o ausearch-lookup.o ausearch-avc.o ausearch-lol.o ausearch-checkpt.o ../lib/libaudit.la ../auparse/libauparse.la ../common/libaucommon.la libtool: link: gcc -D_GNU_SOURCE -Wno-pointer-sign -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/ausearch ausearch.o auditd-config.o ausearch-llist.o ausearch-options.o ausearch-report.o ausearch-match.o ausearch-string.o ausearch-parse.o ausearch-int.o ausearch-time.o ausearch-nvpair.o ausearch-lookup.o ausearch-avc.o ausearch-lol.o ausearch-checkpt.o ../lib/.libs/libaudit.so ../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng ../common/.libs/libaucommon.a make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' Making all in tools Making all in aulast make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../auparse -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aulast-llist.o aulast-llist.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../auparse -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aulast.o aulast.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' /bin/sh ../../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o aulast aulast.o aulast-llist.o ../../auparse/libauparse.la libtool: link: gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/aulast aulast.o aulast-llist.o ../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' Making all in aulastlog make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../auparse -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aulastlog-llist.o aulastlog-llist.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../auparse -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o aulastlog.o aulastlog.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' /bin/sh ../../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o aulastlog aulastlog.o aulastlog-llist.o ../../auparse/libauparse.la libtool: link: gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/aulastlog aulastlog.o aulastlog-llist.o ../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' Making all in ausyscall make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausyscall.o ausyscall.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' /bin/sh ../../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o ausyscall ausyscall.o ../../lib/libaudit.la libtool: link: gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/ausyscall ausyscall.o ../../lib/.libs/libaudit.so -lcap-ng make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' Making all in auvirt make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../auparse -I../../src -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auvirt-list.o auvirt-list.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../auparse -I../../src -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ausearch-time.o `test -f '../../src/ausearch-time.c' || echo './'`../../src/ausearch-time.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../auparse -I../../src -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auvirt.o auvirt.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' /bin/sh ../../libtool --tag=CC --mode=link gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auvirt auvirt.o auvirt-list.o ausearch-time.o ../../auparse/libauparse.la libtool: link: gcc -D_GNU_SOURCE -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/auvirt auvirt.o auvirt-list.o ausearch-time.o ../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so -lcap-ng make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[3]: Nothing to be done for 'all-am'. Making all in bindings Making all in python Making all in python3 make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' /bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../auparse -I../../.. -I/usr/include/python3.10 -I/usr/include/python3.10 -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auparse_la-auparse_python.lo `test -f '../../../bindings/python/auparse_python.c' || echo './'`../../../bindings/python/auparse_python.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../../auparse -I../../.. -I/usr/include/python3.10 -I/usr/include/python3.10 -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ../../../bindings/python/auparse_python.c -fPIC -DPIC -o .libs/auparse_la-auparse_python.o make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' ../../../bindings/python/auparse_python.c: In function 'auparse_callback': ../../../bindings/python/auparse_python.c:294:5: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 294 | result = PyEval_CallObject(cb->func, arglist); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from ../../../bindings/python/auparse_python.c:2: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' /bin/sh ../../../libtool --tag=CC --mode=link gcc -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -module -avoid-version -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparse.la -rpath /usr/lib64/python3.10/site-packages auparse_la-auparse_python.lo ../../../auparse/libauparse.la ../../../lib/libaudit.la libtool: link: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/auparse_la-auparse_python.o -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -Wl,-rpath -Wl,/builddir/build/BUILD/audit-3.1.1/auparse/.libs -Wl,-rpath -Wl,/builddir/build/BUILD/audit-3.1.1/lib/.libs ../../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so ../../../lib/.libs/libaudit.so -lcap-ng -Wl,-soname -Wl,auparse.so -o .libs/auparse.so libtool: link: ( cd ".libs" && rm -f "auparse.la" && ln -s "../auparse.la" "auparse.la" ) make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' make[4]: Nothing to be done for 'all-am'. Making all in golang make[3]: Nothing to be done for 'all'. Making all in swig Making all in src make[4]: Nothing to be done for 'all'. Making all in python3 make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' swig -o audit_wrap.c -python -py3 -modern -I. -I../../.. -I../../../lib -I/usr/include/python3.10 -I/usr/include/python3.10 ./../src/auditswig.i make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' Deprecated command line option: -py3. Ignored, this option is no longer supported. Deprecated command line option: -modern. Ignored, this option is now always on. make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' /bin/sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../.. -I. -I../../.. -I../../../lib -I/usr/include/python3.10 -I/usr/include/python3.10 -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o _audit_la-audit_wrap.lo `test -f 'audit_wrap.c' || echo './'`audit_wrap.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../.. -I. -I../../.. -I../../../lib -I/usr/include/python3.10 -I/usr/include/python3.10 -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c audit_wrap.c -fPIC -DPIC -o .libs/_audit_la-audit_wrap.o make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' /bin/sh ../../../libtool --tag=CC --mode=link gcc -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -module -avoid-version -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o _audit.la -rpath /usr/lib64/python3.10/site-packages _audit_la-audit_wrap.lo ../../../lib/libaudit.la ../../../lib/libaudit.la libtool: link: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/_audit_la-audit_wrap.o -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -Wl,-rpath -Wl,/builddir/build/BUILD/audit-3.1.1/lib/.libs ../../../lib/.libs/libaudit.so -lcap-ng -Wl,-soname -Wl,_audit.so -o .libs/_audit.so libtool: link: ( cd ".libs" && rm -f "_audit.la" && ln -s "../_audit.la" "_audit.la" ) make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' make[4]: Nothing to be done for 'all-am'. make[3]: Nothing to be done for 'all-am'. Making all in init.d make[2]: Nothing to be done for 'all'. Making all in m4 make[2]: Nothing to be done for 'all'. Making all in docs make[2]: Nothing to be done for 'all'. Making all in rules make[2]: Nothing to be done for 'all'. + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.plZ01j + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 ++ dirname /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd audit-3.1.1 + mkdir --mode=0750 -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/rules.d + mkdir --mode=0700 -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/var/log/audit + mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/var/spool/audit + /usr/bin/make install DESTDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 'INSTALL=/usr/bin/install -p' Making install in common make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/common' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/common' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/common' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/common' Making install in lib make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /usr/bin/make install-recursive make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' Making install in test make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64' /bin/sh ../libtool --mode=install /usr/bin/install -p libaudit.la '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64' libtool: install: /usr/bin/install -p .libs/libaudit.so.1.0.0 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.so.1.0.0 libtool: install: (cd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 && { ln -s -f libaudit.so.1.0.0 libaudit.so.1 || { rm -f libaudit.so.1 && ln -s libaudit.so.1.0.0 libaudit.so.1; }; }) libtool: install: (cd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 && { ln -s -f libaudit.so.1.0.0 libaudit.so || { rm -f libaudit.so && ln -s libaudit.so.1.0.0 libaudit.so; }; }) libtool: install: /usr/bin/install -p .libs/libaudit.lai /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.la libtool: install: /usr/bin/install -p .libs/libaudit.a /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.a libtool: install: chmod 644 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.a libtool: install: ranlib /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.a libtool: warning: remember to run 'libtool --finish /usr/lib64' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/include' /usr/bin/install -p -m 644 libaudit.h '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/include' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/pkgconfig' /usr/bin/install -p -m 644 audit.pc '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/pkgconfig' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib' Making install in auparse make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /usr/bin/make install-recursive make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' Making install in test make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64' /bin/sh ../libtool --mode=install /usr/bin/install -p libauparse.la '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64' libtool: warning: relinking 'libauparse.la' libtool: install: (cd /builddir/build/BUILD/audit-3.1.1/auparse; /bin/sh "/builddir/build/BUILD/audit-3.1.1/libtool" --tag CC --mode=relink gcc -fPIC -DPIC -D_GNU_SOURCE -g -DNDEBUG -Wno-pointer-sign -Wno-enum-compare -Wno-switch -Wno-format-truncation -Wno-unused-but-set-variable -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o libauparse.la -rpath /usr/lib64 lru.lo interpret.lo nvlist.lo ellist.lo auparse.lo auditd-config.lo message.lo data_buf.lo expression.lo normalize.lo normalize-llist.lo ../lib/libaudit.la ../common/libaucommon.la -inst-prefix-dir /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64) libtool: relink: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/lru.o .libs/interpret.o .libs/nvlist.o .libs/ellist.o .libs/auparse.o .libs/auditd-config.o .libs/message.o .libs/data_buf.o .libs/expression.o .libs/normalize.o .libs/normalize-llist.o -Wl,--whole-archive ../common/.libs/libaucommon.a -Wl,--no-whole-archive -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -g -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -L/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 -L/usr/lib64 -laudit -lcap-ng -Wl,-soname -Wl,libauparse.so.0 -o .libs/libauparse.so.0.0.0 libtool: install: /usr/bin/install -p .libs/libauparse.so.0.0.0T /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.so.0.0.0 libtool: install: (cd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 && { ln -s -f libauparse.so.0.0.0 libauparse.so.0 || { rm -f libauparse.so.0 && ln -s libauparse.so.0.0.0 libauparse.so.0; }; }) libtool: install: (cd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 && { ln -s -f libauparse.so.0.0.0 libauparse.so || { rm -f libauparse.so && ln -s libauparse.so.0.0.0 libauparse.so; }; }) libtool: install: /usr/bin/install -p .libs/libauparse.lai /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.la libtool: install: /usr/bin/install -p .libs/libauparse.a /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.a libtool: install: chmod 644 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.a libtool: install: ranlib /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.a libtool: warning: remember to run 'libtool --finish /usr/lib64' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/include' /usr/bin/install -p -m 644 auparse.h auparse-defs.h '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/include' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/pkgconfig' /usr/bin/install -p -m 644 auparse.pc '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/pkgconfig' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse' Making install in audisp make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' Making install in plugins make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' Making install in af_unix make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../../../libtool --mode=install /usr/bin/install -p audisp-af_unix '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: install: /usr/bin/install -p audisp-af_unix /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-af_unix /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 audisp-af_unix.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/make install-data-hook make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' mkdir -p -m 0750 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d for i in af_unix.conf; do \ /usr/bin/install -p -m 644 -D -m 640 ./"$i" \ /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d; \ done make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/af_unix' Making install in remote make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../../../libtool --mode=install /usr/bin/install -p audisp-remote '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: install: /usr/bin/install -p audisp-remote /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-remote /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man5' /usr/bin/install -p -m 644 audisp-remote.conf.5 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man5' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 audisp-remote.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/make install-data-hook make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' mkdir -p -m 0750 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /usr/bin/install -p -m 644 -D -m 640 ./au-remote.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /usr/bin/install -p -m 644 -D -m 640 ./audisp-remote.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' Making install in syslog make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../../../libtool --mode=install /usr/bin/install -p audisp-syslog '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: warning: '../../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/audisp-syslog /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-syslog /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 audisp-syslog.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/make install-data-hook make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' mkdir -p -m 0750 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /usr/bin/install -p -m 644 -D -m 640 ./syslog.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/syslog' Making install in statsd make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../../../libtool --mode=install /usr/bin/install -p audisp-statsd '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: warning: '../../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: warning: '../../../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/audisp-statsd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-statsd /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 audisp-statsd.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/make install-data-hook make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' mkdir -p -m 0750 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /usr/bin/install -p -m 644 -D -m 640 ./au-statsd.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d /usr/bin/install -p -m 644 -D -m 640 ./audisp-statsd.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/statsd' Making install in zos-remote make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../../../libtool --mode=install /usr/bin/install -p audispd-zos-remote '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: warning: '../../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/audispd-zos-remote /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audispd-zos-remote /usr/bin/make install-data-hook make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' mkdir -p -m 0750 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit /usr/bin/install -p -m 644 -D -m 640 ./zos-remote.conf \ /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit /usr/bin/install -p -m 644 -D -m 640 ./audispd-zos-remote.conf \ /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit/plugins.d make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/zos-remote' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp' Making install in src/libev make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/libev' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/libev' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/libev' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/libev' Making install in src make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' Making install in test make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /bin/sh ../libtool --mode=install /usr/bin/install -p auditd auditctl aureport ausearch autrace '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' libtool: warning: '../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: warning: '../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/auditd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/auditd libtool: warning: '../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: warning: '../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/auditctl /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/auditctl libtool: warning: '../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: warning: '../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/aureport /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/aureport libtool: warning: '../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: warning: '../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/ausearch /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/ausearch libtool: warning: '../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/autrace /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/autrace make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src' Making install in tools make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools' Making install in aulast make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' /bin/sh ../../libtool --mode=install /usr/bin/install -p aulast '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' libtool: warning: '../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/aulast /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/aulast /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 aulast.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulast' Making install in aulastlog make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' /bin/sh ../../libtool --mode=install /usr/bin/install -p aulastlog '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' libtool: warning: '../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/aulastlog /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/aulastlog /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 aulastlog.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/aulastlog' Making install in ausyscall make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' /bin/sh ../../libtool --mode=install /usr/bin/install -p ausyscall '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' libtool: warning: '../../lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/ausyscall /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/ausyscall /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 ausyscall.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/ausyscall' Making install in auvirt make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' /bin/sh ../../libtool --mode=install /usr/bin/install -p auvirt '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin' libtool: warning: '../../auparse/libauparse.la' has not been installed in '/usr/lib64' libtool: warning: '/builddir/build/BUILD/audit-3.1.1/lib/libaudit.la' has not been installed in '/usr/lib64' libtool: install: /usr/bin/install -p .libs/auvirt /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/auvirt /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 auvirt.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools/auvirt' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/tools' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/tools' Making install in bindings make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings' Making install in python make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' Making install in python3 make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' /bin/sh ../../../libtool --mode=install /usr/bin/install -p auparse.la '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' libtool: warning: relinking 'auparse.la' libtool: install: (cd /builddir/build/BUILD/audit-3.1.1/bindings/python/python3; /bin/sh "/builddir/build/BUILD/audit-3.1.1/libtool" --tag CC --mode=relink gcc -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -module -avoid-version -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparse.la -rpath /usr/lib64/python3.10/site-packages auparse_la-auparse_python.lo ../../../auparse/libauparse.la ../../../lib/libaudit.la -inst-prefix-dir /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64) libtool: relink: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/auparse_la-auparse_python.o -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -L/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 -L/usr/lib64 -lauparse -laudit -lcap-ng -Wl,-soname -Wl,auparse.so -o .libs/auparse.so libtool: install: /usr/bin/install -p .libs/auparse.soT /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/auparse.so libtool: install: /usr/bin/install -p .libs/auparse.lai /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/auparse.la libtool: warning: remember to run 'libtool --finish /usr/lib64/python3.10/site-packages' make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python/python3' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/python' Making install in golang make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/golang' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/golang' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/golang' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/golang' Making install in swig make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' Making install in src make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/src' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/src' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/src' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/src' Making install in python3 make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' /bin/sh ../../../libtool --mode=install /usr/bin/install -p _audit.la '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' libtool: warning: relinking '_audit.la' libtool: install: (cd /builddir/build/BUILD/audit-3.1.1/bindings/swig/python3; /bin/sh "/builddir/build/BUILD/audit-3.1.1/libtool" --tag CC --mode=relink gcc -shared -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -module -avoid-version -Wl,-z,relro -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o _audit.la -rpath /usr/lib64/python3.10/site-packages _audit_la-audit_wrap.lo ../../../lib/libaudit.la ../../../lib/libaudit.la -inst-prefix-dir /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64) libtool: relink: gcc -shared -Wl,--as-needed -fPIC -DPIC .libs/_audit_la-audit_wrap.o -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -O2 -flto=auto -g -grecord-gcc-switches -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -Wl,-z -Wl,relro -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -L/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64 -L/usr/lib64 -laudit -lcap-ng -Wl,-soname -Wl,_audit.so -o .libs/_audit.so libtool: install: /usr/bin/install -p .libs/_audit.soT /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/_audit.so libtool: install: /usr/bin/install -p .libs/_audit.lai /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/_audit.la libtool: warning: remember to run 'libtool --finish /usr/lib64/python3.10/site-packages' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' /usr/bin/install -p -m 644 audit.py '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages' Byte-compiling python modules... audit.py Byte-compiling python modules (optimized versions) ... audit.py make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig/python3' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' make[4]: Nothing to be done for 'install-exec-am'. make[4]: Nothing to be done for 'install-data-am'. make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings/swig' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/bindings' make[3]: Nothing to be done for 'install-exec-am'. make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/bindings' Making install in init.d make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/init.d' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/init.d' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /usr/bin/install -p augenrules '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin' /usr/bin/make install-exec-hook make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/init.d' mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/systemd/system mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec /usr/bin/install -p -D -m 644 ./auditd.service /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/systemd/system /usr/bin/install -p -D -m 750 ./auditd.rotate /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/rotate /usr/bin/install -p -D -m 750 ./auditd.resume /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/resume /usr/bin/install -p -D -m 750 ./auditd.reload /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/reload /usr/bin/install -p -D -m 750 ./auditd.state /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/state /usr/bin/install -p -D -m 750 ./auditd.stop /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/stop /usr/bin/install -p -D -m 750 ./auditd.restart /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/restart /usr/bin/install -p -D -m 750 ./auditd.condrestart /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec/initscripts/legacy-actions/auditd/condrestart /usr/bin/install -p -D -m 750 ./audit-functions /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/libexec chmod 0755 /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/augenrules make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/init.d' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit' /usr/bin/install -p -m 644 auditd.conf audit-stop.rules '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/audit' /usr/bin/make install-data-hook make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/init.d' /usr/bin/install -p -m 644 -D -m 640 ./libaudit.conf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/init.d' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/init.d' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/init.d' Making install in m4 make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/m4' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/m4' make[2]: Nothing to be done for 'install-exec-am'. /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/aclocal' /usr/bin/install -p -m 644 audit.m4 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/aclocal' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/m4' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/m4' Making install in docs make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/docs' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/docs' make[2]: Nothing to be done for 'install-exec-am'. /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man3' /usr/bin/install -p -m 644 audit_add_rule_data.3 audit_add_watch.3 audit_delete_rule_data.3 audit_detect_machine.3 audit_encode_nv_string.3 audit_getloginuid.3 audit_get_reply.3 audit_get_session.3 audit_log_acct_message.3 audit_log_user_avc_message.3 audit_log_user_command.3 audit_log_user_comm_message.3 audit_log_user_message.3 audit_log_semanage_message.3 auparse_new_buffer.3 audit_open.3 audit_close.3 audit_is_enabled.3 audit_request_rules_list_data.3 audit_request_signal_info.3 audit_request_status.3 audit_set_backlog_limit.3 audit_set_enabled.3 audit_set_failure.3 audit_setloginuid.3 audit_set_pid.3 audit_set_rate_limit.3 audit_update_watch_perms.3 audit_value_needs_encoding.3 audit_encode_value.3 auparse_add_callback.3 audit_name_to_syscall.3 audit_syscall_to_name.3 audit_name_to_errno.3 audit_fstype_to_name.3 audit_name_to_fstype.3 audit_name_to_action.3 audit_flag_to_name.3 audit_name_to_flag.3 auparse_destroy.3 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man3' /usr/bin/install -p -m 644 auparse_feed.3 auparse_feed_age_events.3 auparse_feed_has_data.3 auparse_find_field.3 auparse_find_field_next.3 auparse_first_field.3 auparse_first_record.3 auparse_flush_feed.3 auparse_get_field_int.3 auparse_get_field_name.3 auparse_get_field_str.3 auparse_get_field_type.3 auparse_get_filename.3 auparse_get_line_number.3 auparse_get_milli.3 auparse_get_node.3 auparse_get_num_fields.3 auparse_get_num_records.3 auparse_get_record_text.3 auparse_get_serial.3 auparse_get_time.3 auparse_get_timestamp.3 auparse_get_type.3 auparse_get_type_name.3 auparse_get_field_num.3 auparse_get_record_num.3 auparse_goto_field_num.3 auparse_goto_record_num.3 auparse_init.3 auparse_interpret_field.3 auparse_next_event.3 auparse_next_field.3 auparse_next_record.3 auparse_node_compare.3 auparse_reset.3 auparse_set_escape_mode.3 auparse_normalize.3 auparse_normalize_functions.3 auparse_timestamp_compare.3 auparse_set_eoe_timeout.3 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man3' /usr/bin/install -p -m 644 ausearch_add_item.3 ausearch_add_interpreted_item.3 ausearch_add_expression.3 ausearch_add_timestamp_item.3 ausearch_add_regex.3 ausearch_add_timestamp_item_ex.3 ausearch_clear.3 ausearch_next_event.3 ausearch_set_stop.3 get_auditfail_action.3 set_aumessage_mode.3 audit_set_backlog_wait_time.3 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man3' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man5' /usr/bin/install -p -m 644 auditd.conf.5 auditd-plugins.5 ausearch-expression.5 libaudit.conf.5 zos-remote.conf.5 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man5' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man7' /usr/bin/install -p -m 644 audit.rules.7 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man7' /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' /usr/bin/install -p -m 644 auditctl.8 auditd.8 aureport.8 ausearch.8 autrace.8 audispd-zos-remote.8 augenrules.8 '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man8' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/docs' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/docs' Making install in rules make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1/rules' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1/rules' make[2]: Nothing to be done for 'install-exec-am'. /usr/bin/mkdir -p '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/audit/sample-rules' /usr/bin/install -p -m 644 10-base-config.rules 10-no-audit.rules 11-loginuid.rules 12-ignore-error.rules 12-cont-fail.rules 20-dont-audit.rules 21-no32bit.rules 22-ignore-chrony.rules 23-ignore-filesystems.rules 30-nispom.rules 30-stig.rules 30-pci-dss-v31.rules 30-ospp-v42.rules 30-ospp-v42-1-create-failed.rules 30-ospp-v42-1-create-success.rules 30-ospp-v42-2-modify-failed.rules 30-ospp-v42-2-modify-success.rules 30-ospp-v42-3-access-failed.rules 30-ospp-v42-3-access-success.rules 30-ospp-v42-4-delete-failed.rules 30-ospp-v42-4-delete-success.rules 30-ospp-v42-5-perm-change-failed.rules 30-ospp-v42-5-perm-change-success.rules 30-ospp-v42-6-owner-change-failed.rules 30-ospp-v42-6-owner-change-success.rules 31-privileged.rules 32-power-abuse.rules 40-local.rules 41-containers.rules 42-injection.rules 43-module-load.rules 44-installers.rules 70-einval.rules 71-networking.rules 99-finalize.rules README-rules '/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/audit/sample-rules' make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/rules' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/rules' make[1]: Entering directory '/builddir/build/BUILD/audit-3.1.1' make[2]: Entering directory '/builddir/build/BUILD/audit-3.1.1' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/builddir/build/BUILD/audit-3.1.1' make[1]: Leaving directory '/builddir/build/BUILD/audit-3.1.1' + rm -f /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.a + rm -f /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.a + find /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages -name '*.a' -delete + touch -r ./audit.spec /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/etc/libaudit.conf + touch -r ./audit.spec /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/man/man5/libaudit.conf.5 + pushd /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 ~/build/BUILD/audit-3.1.1 + patch -p0 patching file usr/include/libaudit.h Hunk #1 succeeded at 27 with fuzz 1 (offset -12 lines). + find . -name '*.orig' -delete + popd ~/build/BUILD/audit-3.1.1 + /usr/lib/rpm/anolis/generate-compatibility-deps audit ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/compatibility/audit ~/build/BUILD/audit-3.1.1 ~/build/BUILD/audit-3.1.1 ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/compatibility/audit ~/build/BUILD/audit-3.1.1 ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/compatibility/audit ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/compatibility/audit ~/build/BUILD/audit-3.1.1 ~/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/compatibility/audit ~/build/BUILD/audit-3.1.1 + /usr/bin/find-debuginfo -j64 --strict-build-id -m -i --build-id-seed 3.1.1-1.an23 --unique-debug-suffix -3.1.1-1.an23.x86_64 --unique-debug-src-base audit-3.1.1-1.an23.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /builddir/build/BUILD/audit-3.1.1 extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/aulast extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/aulastlog extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/auvirt extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libaudit.so.1.0.0 extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/bin/ausyscall extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/auparse.so extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/libauparse.so.0.0.0 extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10/site-packages/_audit.so extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-af_unix extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-statsd extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audispd-zos-remote extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-syslog extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/audisp-remote extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/auditd extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/aureport extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/auditctl extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/autrace extracting debug info from /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/sbin/ausearch Support for debuginfod is not compiled into GDB.Support for debuginfod is not compiled into GDB.Support for debuginfod is not compiled into GDB.Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. Support for debuginfod is not compiled into GDB. original debug info size: 3336kB, size after compression: 3016kB /usr/bin/sepdebugcrcfix: Updated 18 CRC32s, 0 CRC32s did match. 4156 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/anolis/brp-ldconfig + COMPRESS='zstd -f --rm -19 -T0' + COMPRESS_EXT=.zst + /usr/lib/rpm/brp-compress + /usr/lib/rpm/anolis/brp-strip-lto /usr/bin/strip + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/check-rpaths + /usr/lib/rpm/brp-remove-la-files + /usr/lib/rpm/anolis/clean_perl + /usr/lib/rpm/anolis/check_elf_files Warning: undefined symbols in /usr/lib64/python3.10/site-packages/auparse.so: _Py_NotImplementedStruct PyExc_RuntimeError PyExc_ValueError PyExc_TypeError PyExc_IOError PyExc_EnvironmentError _Py_FalseStruct _Py_NoneStruct _Py_TrueStruct PyFunction_Type PyExc_LookupError PySequence_Check PyModule_AddIntConstant PyMem_Free PyErr_SetFromErrno PyObject_GetAttrString PyEval_CallObjectWithKeywords _Py_Dealloc PyErr_NoMemory PyErr_SetString PyObject_IsInstance PySequence_GetItem PyType_Ready PyLong_FromLong PySequence_Size PyErr_NewException PyModule_Create2 PyImport_ImportModule _PyArg_ParseTuple_SizeT _PyArg_ParseTupleAndKeywords_SizeT PyUnicode_AsUTF8 PyUnicode_FromString PyModule_AddObject PyObject_AsFileDescriptor PyErr_SetFromErrnoWithFilename _Py_BuildValue_SizeT PyMem_Malloc Warning: undefined symbols in /usr/lib64/python3.10/site-packages/_audit.so: PyExc_SystemError _Py_NotImplementedStruct PyExc_RuntimeError PyExc_MemoryError PyExc_ValueError PyExc_TypeError PyExc_OSError PyExc_IOError PyObject_GenericGetAttr PyExc_OverflowError PyType_Type _Py_NoneStruct PyExc_ZeroDivisionError PyExc_IndexError PyExc_AttributeError PyExc_SyntaxError PyUnicode_FromFormat PyDict_SetItemString PyErr_Restore PyErr_SetFromErrno PyObject_GetAttrString PyImport_AddModule PyUnicode_AsUTF8String _Py_Dealloc PyLong_FromSize_t PyErr_SetString PyObject_IsInstance PyObject_Free PyCapsule_Import PyType_Ready PyLong_FromLong PyDict_GetItem PyLong_FromVoidPtr PyErr_Clear PyBool_FromLong PyTuple_New PyType_Modified PyArg_UnpackTuple PyObject_SetAttr PyErr_Occurred PyModule_Create2 PyLong_AsLong PyObject_CallFunctionObjArgs PyUnicode_DecodeUTF8 PyObject_IsTrue Py_DecRef PyDict_New PyLong_AsUnsignedLong PyErr_Fetch _PyObject_New PyUnicode_FromString PyUnicode_InternFromString PyModule_AddObject PyDict_SetItem PyObject_Call PyCapsule_New PyErr_Format PyCapsule_GetPointer PyModule_GetDict PyUnicode_Concat PyObject_GetAttr PyBytes_AsStringAndSize PyErr_WriteUnraisable + /usr/lib/rpm/anolis/brp-mangle-shebangs mangling shebang in /usr/sbin/augenrules from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/rotate from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/resume from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/reload from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/state from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/stop from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/restart from /bin/sh to #!/usr/bin/sh mangling shebang in /usr/libexec/initscripts/legacy-actions/auditd/condrestart from /bin/sh to #!/usr/bin/sh *** WARNING: ./usr/libexec/audit-functions is executable but has no shebang, removing executable bit + /usr/lib/rpm/anolis/remove-info-dir + /usr/lib/rpm/anolis/check-desktop-files + /usr/lib/rpm/anolis/brp-python-bytecompile '' 1 0 Bytecompiling .py files below /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib64/python3.10 using python3.10 Bytecompiling .py files below /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/lib/debug/usr/lib64/python3.10 using python3.10 + /usr/lib/rpm/anolis/brp-python-hardlink Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.jH2u3i + umask 022 + cd /builddir/build/BUILD + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd audit-3.1.1 + /usr/bin/make -O -j64 V=1 VERBOSE=1 check Making check in common make[1]: Nothing to be done for 'check'. Making check in lib /usr/bin/make check-recursive Making check in test /usr/bin/make lookup_test make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' gcc -DHAVE_CONFIG_H -I. -I../.. -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o lookup_test.o lookup_test.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o lookup_test lookup_test.o ../../lib/libaudit.la libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/lookup_test lookup_test.o ../../lib/.libs/libaudit.so -lcap-ng make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' /usr/bin/make check-TESTS make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' PASS: lookup_test make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/lib/test' ============================================================================ Testsuite summary for audit 3.1.1 ============================================================================ # TOTAL: 1 # PASS: 1 # SKIP: 0 # XFAIL: 0 # FAIL: 0 # XPASS: 0 # ERROR: 0 ============================================================================ make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/lib/test' make[3]: Nothing to be done for 'check-am'. Making check in auparse /usr/bin/make check-recursive Making check in test /usr/bin/make auparse_test auparselol_test lookup_test \ auparse_test.py make[4]: Nothing to be done for 'auparse_test.py'. make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' gcc -DHAVE_CONFIG_H -I. -I../.. -I../../auparse -I../../lib -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auparselol_test.o auparselol_test.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' gcc -DHAVE_CONFIG_H -I. -I../.. -I../../auparse -I../../lib -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o auparse_test.o auparse_test.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' gcc -DHAVE_CONFIG_H -I. -I../.. -I../../auparse -I../../lib -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o lookup_test.o lookup_test.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' lookup_test.c:53:1: warning: 'gen_id' defined but not used [-Wunused-function] 53 | gen_id(char *dest) | ^~~~~~ make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o lookup_test lookup_test.o ../../auparse/libauparse.la ../../lib/libaudit.la ../../common/libaucommon.la libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o .libs/lookup_test lookup_test.o ../../auparse/.libs/libauparse.so /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.so ../../lib/.libs/libaudit.so -lcap-ng ../../common/.libs/libaucommon.a make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -static -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparselol_test auparselol_test.o ../../auparse/libauparse.la ../../lib/libaudit.la ../../common/libaucommon.la libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparselol_test auparselol_test.o ../../auparse/.libs/libauparse.a /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.a ../../lib/.libs/libaudit.a -lcap-ng ../../common/.libs/libaucommon.a make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -static -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparse_test auparse_test.o ../../auparse/libauparse.la ../../lib/libaudit.la ../../common/libaucommon.la libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o auparse_test auparse_test.o ../../auparse/.libs/libauparse.a /builddir/build/BUILD/audit-3.1.1/lib/.libs/libaudit.a ../../lib/.libs/libaudit.a -lcap-ng ../../common/.libs/libaucommon.a make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' /usr/bin/make check-local make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' test "../.." = "../.." || \ cp ../../auparse/test/test*.log . LC_ALL=C \ ./auparse_test > auparse_test.cur diff -u ../../auparse/test/auparse_test.ref auparse_test.cur ./auparselol_test -f test3.log --check | sort > auparse_test.cur sed -f ../../auparse/test/auditd_raw.sed test3.log | sort > auparse_test.raw diff -u auparse_test.raw auparse_test.cur cp ../../bindings/swig/python3/.libs/_audit.so ../../bindings/swig/python3 PYTHONPATH=../../bindings/python/python3/.libs/:../../bindings/swig/python3:../../bindings/swig/python3/.libs \ PYTHONDONTWRITEBYTECODE=1 \ LD_LIBRARY_PATH=../../auparse/.libs \ srcdir=. ./auparse_test.py \ | sed 's,./test,test,' > auparse_test.cur diff -u ../../auparse/test/auparse_test.ref.py auparse_test.cur ./lookup_test Testing captab... Testing clocktab... Testing epoll_ctl... Testing famtab... Testing fcntltab... Testing icmptypetab... Testing inethooktab... Testing ioctlreqtab... Testing ip6optnametab... Testing ipctab... Testing ipoptnametab... Testing netactiontab... Testing nfprototab... Testing evtypetab... Testing normalize_obj_kind_map... Testing normalize_record_map... Testing persontab... Testing pktoptnametab... Testing prctl_opttab... Testing ptracetab... Testing rlimittab... Testing schedtab... Testing seccomptab... Testing seektab... Testing signaltab... Testing sockleveltab... Testing sockoptnametab... Testing socktab... Testing socktypetab... Testing tcpoptnametab... =============================== Interpretation table tests pass =============================== echo -e "===================\nAuparse Test Passes\n===================" =================== Auparse Test Passes =================== make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/auparse/test' make[3]: Nothing to be done for 'check-am'. Making check in audisp Making check in plugins Making check in af_unix make[3]: Nothing to be done for 'check'. Making check in remote /usr/bin/make test-queue make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o test-queue.o test-queue.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' gcc -DHAVE_CONFIG_H -I. -I../../.. -I../../.. -I../../../lib -I../../../common -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o queue.o queue.c make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' /bin/sh ../../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o test-queue queue.o test-queue.o libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o test-queue queue.o test-queue.o make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' /usr/bin/make check-TESTS make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' PASS: test-queue make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' make[5]: Entering directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' ============================================================================ Testsuite summary for audit 3.1.1 ============================================================================ # TOTAL: 1 # PASS: 1 # SKIP: 0 # XFAIL: 0 # FAIL: 0 # XPASS: 0 # ERROR: 0 ============================================================================ make[5]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/audisp/plugins/remote' Making check in syslog make[3]: Nothing to be done for 'check'. Making check in statsd make[3]: Nothing to be done for 'check'. Making check in zos-remote make[3]: Nothing to be done for 'check'. make[3]: Nothing to be done for 'check-am'. make[2]: Nothing to be done for 'check-am'. Making check in src/libev make[1]: Nothing to be done for 'check'. Making check in src Making check in test /usr/bin/make ilist_test slist_test make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../src -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o ilist_test.o ilist_test.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../../lib -I../../src -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o slist_test.o slist_test.c make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o ilist_test ilist_test.o ../../src/ausearch-int.o libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o ilist_test ilist_test.o ../../src/ausearch-int.o make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[3]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' /bin/sh ../../libtool --tag=CC --mode=link gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o slist_test slist_test.o ../../src/ausearch-string.o libtool: link: gcc -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/anolis/anolis-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/anolis/anolis-hardened-ld -specs=/usr/lib/rpm/anolis/anolis-annobin-cc1 -Wl,--build-id=sha1 -o slist_test slist_test.o ../../src/ausearch-string.o make[3]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' /usr/bin/make check-TESTS make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' PASS: ilist_test make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' PASS: slist_test make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[4]: Entering directory '/builddir/build/BUILD/audit-3.1.1/src/test' ============================================================================ Testsuite summary for audit 3.1.1 ============================================================================ # TOTAL: 2 # PASS: 2 # SKIP: 0 # XFAIL: 0 # FAIL: 0 # XPASS: 0 # ERROR: 0 ============================================================================ make[4]: Leaving directory '/builddir/build/BUILD/audit-3.1.1/src/test' make[2]: Nothing to be done for 'check-am'. Making check in tools Making check in aulast make[2]: Nothing to be done for 'check'. Making check in aulastlog make[2]: Nothing to be done for 'check'. Making check in ausyscall make[2]: Nothing to be done for 'check'. Making check in auvirt make[2]: Nothing to be done for 'check'. make[2]: Nothing to be done for 'check-am'. Making check in bindings Making check in python Making check in python3 make[3]: Nothing to be done for 'check'. make[3]: Nothing to be done for 'check-am'. Making check in golang /usr/bin/make test.go make[3]: Nothing to be done for 'test.go'. Making check in swig Making check in src make[3]: Nothing to be done for 'check'. Making check in python3 make[3]: Nothing to be done for 'check'. make[3]: Nothing to be done for 'check-am'. make[2]: Nothing to be done for 'check-am'. Making check in init.d make[1]: Nothing to be done for 'check'. Making check in m4 make[1]: Nothing to be done for 'check'. Making check in docs make[1]: Nothing to be done for 'check'. Making check in rules make[1]: Nothing to be done for 'check'. + rm -f rules/Makefile rules/Makefile.am rules/Makefile.in + RPM_EC=0 ++ jobs -p + exit 0 Processing files: audit-3.1.1-1.an23.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.7VIMyD + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + DOCDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit + cp -pr rules /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit + cp -pr init.d/auditd.cron /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit + RPM_EC=0 ++ jobs -p + exit 0 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.N8hhlH + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + LICENSEDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit + export LC_ALL=C + LC_ALL=C + export LICENSEDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit + cp -pr COPYING /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit + RPM_EC=0 ++ jobs -p + exit 0 Provides: api(audit) = 3.1.1 audit = 3.1.1-1.an23 audit(x86-64) = 3.1.1-1.an23 config(audit) = 3.1.1-1.an23 Requires(interp): /bin/sh /bin/sh /bin/sh Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires(post): /bin/sh systemd Requires(preun): /bin/sh systemd Requires(postun): /bin/sh systemd Requires: /usr/bin/sh libaudit.so.1()(64bit) libauparse.so.0()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.10)(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.15)(64bit) libc.so.6(GLIBC_2.16)(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.2)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.32)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.7)(64bit) libc.so.6(GLIBC_2.8)(64bit) libc.so.6(GLIBC_2.9)(64bit) libcap-ng.so.0()(64bit) libgssapi_krb5.so.2()(64bit) libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit) libkrb5.so.3()(64bit) libkrb5.so.3(krb5_3_MIT)(64bit) rtld(GNU_HASH) Processing files: audit-libs-3.1.1-1.an23.x86_64 Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.ghaYSw + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + LICENSEDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit-libs + export LC_ALL=C + LC_ALL=C + export LICENSEDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit-libs + cp -pr COPYING.LIB /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/licenses/audit-libs + RPM_EC=0 ++ jobs -p + exit 0 Provides: abi(audit-libs) = 3.1.1 audit-libs = 3.1.1-1.an23 audit-libs(x86-64) = 3.1.1-1.an23 config(audit-libs) = 3.1.1-1.an23 libaudit.so.1()(64bit) libauparse.so.0()(64bit) Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libaudit.so.1()(64bit) libauparse.so.0()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.7)(64bit) libc.so.6(GLIBC_2.8)(64bit) libcap-ng.so.0()(64bit) rtld(GNU_HASH) Processing files: audit-libs-devel-3.1.1-1.an23.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.XppNly + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + DOCDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-libs-devel + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-libs-devel + cp -pr contrib/plugin /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-libs-devel + RPM_EC=0 ++ jobs -p + exit 0 Provides: audit-libs-devel = 3.1.1-1.an23 audit-libs-devel(x86-64) = 3.1.1-1.an23 pkgconfig(audit) = 3.1.1 pkgconfig(auparse) = 3.1.1 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /usr/bin/pkg-config libaudit.so.1()(64bit) libauparse.so.0()(64bit) pkgconfig(libcap-ng) Processing files: python3-audit-3.1.1-1.an23.x86_64 Provides: audit-libs-python3 = 3.1.1-1.an23 python-audit = 3.1.1-1.an23 python3-audit = 3.1.1-1.an23 python3-audit(x86-64) = 3.1.1-1.an23 python3.10-audit = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libaudit.so.1()(64bit) libauparse.so.0()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.4)(64bit) python(abi) = 3.10 rtld(GNU_HASH) Obsoletes: audit-libs-python3 < 3.1.1-1.an23 Processing files: audispd-plugins-3.1.1-1.an23.x86_64 Provides: api(audispd-plugins) = 3.1.1 audispd-plugins = 3.1.1-1.an23 audispd-plugins(x86-64) = 3.1.1-1.an23 config(audispd-plugins) = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libaudit.so.1()(64bit) libauparse.so.0()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.15)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.7)(64bit) libc.so.6(GLIBC_2.8)(64bit) libcap-ng.so.0()(64bit) libgssapi_krb5.so.2()(64bit) libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit) libkrb5.so.3()(64bit) libkrb5.so.3(krb5_3_MIT)(64bit) rtld(GNU_HASH) Processing files: audispd-plugins-zos-3.1.1-1.an23.x86_64 Provides: audispd-plugins-zos = 3.1.1-1.an23 audispd-plugins-zos(x86-64) = 3.1.1-1.an23 config(audispd-plugins-zos) = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libauparse.so.0()(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.2)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.32)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.8)(64bit) libcap-ng.so.0()(64bit) liblber.so.2()(64bit) liblber.so.2(OPENLDAP_2.200)(64bit) libldap.so.2()(64bit) libldap.so.2(OPENLDAP_2.200)(64bit) rtld(GNU_HASH) Processing files: audit-doc-3.1.1-1.an23.noarch Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.OOntRJ + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + DOCDIR=/builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + cp -pr README /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + cp -pr ChangeLog /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + cp -pr AUTHORS /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + cp -pr TODO /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + cp -pr NEWS /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64/usr/share/doc/audit-doc + RPM_EC=0 ++ jobs -p + exit 0 Provides: audit-doc = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: audit-debugsource-3.1.1-1.an23.x86_64 Provides: audit-debugsource = 3.1.1-1.an23 audit-debugsource(x86-64) = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: audit-debuginfo-3.1.1-1.an23.x86_64 Provides: audit-debuginfo = 3.1.1-1.an23 audit-debuginfo(x86-64) = 3.1.1-1.an23 debuginfo(build-id) = 18d9f2966b7d4ea8068202281ff77870e0b9e29a debuginfo(build-id) = 286210c6e0905c96de1b3289cefa84eb2a1ae5a9 debuginfo(build-id) = 2dc7fc2c7f4ed06647ff66637aa3268aa152ca13 debuginfo(build-id) = 4a0b0a9aad03b2d63699faea6b43c0ab38d9d904 debuginfo(build-id) = 8d3c52d8dee69302f2cb6a12bf2b43f442a3c078 debuginfo(build-id) = 9ad7b9914187b60cdf043e4f9fe3cc7c2a550c61 debuginfo(build-id) = a00277f2b20a24bcf6342357a93f9bb360926c0c debuginfo(build-id) = cceb03463c70e3cea054c3ab6ec1d1672d620bf8 debuginfo(build-id) = f5b5e8331901be68f2b7d21772e8fec610bcdff6 debuginfo(build-id) = fe3cf9ebb9a87372991975bb6f78330af8090700 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: audit-debugsource(x86-64) = 3.1.1-1.an23 Processing files: audit-libs-debuginfo-3.1.1-1.an23.x86_64 Provides: audit-libs-debuginfo = 3.1.1-1.an23 audit-libs-debuginfo(x86-64) = 3.1.1-1.an23 debuginfo(build-id) = 7c9ce319ee39bd42cb1b5d7b50bc179d3a811e6a debuginfo(build-id) = dcc6f0883c087256d6d7b926c57d4ac9bde1185c libaudit.so.1.0.0-3.1.1-1.an23.x86_64.debug()(64bit) libauparse.so.0.0.0-3.1.1-1.an23.x86_64.debug()(64bit) Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: audit-debugsource(x86-64) = 3.1.1-1.an23 Processing files: python3-audit-debuginfo-3.1.1-1.an23.x86_64 Provides: debuginfo(build-id) = 17bf841ef1470a212825b266d4bd3a1e93bc15d1 debuginfo(build-id) = 32d297a0b5185e8c8563f41d04bf4254df23ded6 python-audit-debuginfo = 3.1.1-1.an23 python3-audit-debuginfo = 3.1.1-1.an23 python3-audit-debuginfo(x86-64) = 3.1.1-1.an23 python3.10-audit-debuginfo = 3.1.1-1.an23 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: audit-debugsource(x86-64) = 3.1.1-1.an23 Processing files: audispd-plugins-debuginfo-3.1.1-1.an23.x86_64 Provides: audispd-plugins-debuginfo = 3.1.1-1.an23 audispd-plugins-debuginfo(x86-64) = 3.1.1-1.an23 debuginfo(build-id) = 13ee4fb95975843f667faa461c763512cadb03a9 debuginfo(build-id) = a45b7ce8615b5fa196b145f67695d25ad1ea30db debuginfo(build-id) = e449f62dbed66d9a2e490300efba22e369fc83af Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: audit-debugsource(x86-64) = 3.1.1-1.an23 Processing files: audispd-plugins-zos-debuginfo-3.1.1-1.an23.x86_64 Provides: audispd-plugins-zos-debuginfo = 3.1.1-1.an23 audispd-plugins-zos-debuginfo(x86-64) = 3.1.1-1.an23 debuginfo(build-id) = e76d4d5cb55af83d588755758d4b4c29a3cde78b Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: audit-debugsource(x86-64) = 3.1.1-1.an23 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 Wrote: /builddir/build/RPMS/audit-doc-3.1.1-1.an23.noarch.rpm Wrote: /builddir/build/RPMS/audispd-plugins-zos-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-libs-devel-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audispd-plugins-zos-debuginfo-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audispd-plugins-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audispd-plugins-debuginfo-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/python3-audit-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-libs-debuginfo-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/python3-audit-debuginfo-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-libs-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-debuginfo-3.1.1-1.an23.x86_64.rpm Wrote: /builddir/build/RPMS/audit-debugsource-3.1.1-1.an23.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.7heBME + umask 022 + cd /builddir/build/BUILD + cd audit-3.1.1 + /usr/bin/rm -rf /builddir/build/BUILDROOT/audit-3.1.1-1.an23.x86_64 + RPM_EC=0 ++ jobs -p + exit 0 Executing(rmbuild): /bin/sh -e /var/tmp/rpm-tmp.883Ory + umask 022 + cd /builddir/build/BUILD + rm -rf audit-3.1.1 audit-3.1.1.gemspec + RPM_EC=0 ++ jobs -p + exit 0 Child return code was: 0