<86>Apr 27 08:47:49 userdel[3709684]: delete user 'rooter' <86>Apr 27 08:47:49 userdel[3709684]: removed group 'rooter' owned by 'rooter' <86>Apr 27 08:47:49 userdel[3709684]: removed shadow group 'rooter' owned by 'rooter' <86>Apr 27 08:47:49 groupadd[3709768]: group added to /etc/group: name=rooter, GID=1871 <86>Apr 27 08:47:49 groupadd[3709768]: group added to /etc/gshadow: name=rooter <86>Apr 27 08:47:49 groupadd[3709768]: new group: name=rooter, GID=1871 <86>Apr 27 08:47:49 useradd[3709823]: new user: name=rooter, UID=1871, GID=1871, home=/root, shell=/bin/bash, from=none <86>Apr 27 08:47:49 userdel[3709905]: delete user 'builder' <86>Apr 27 08:47:49 userdel[3709905]: removed group 'builder' owned by 'builder' <86>Apr 27 08:47:49 userdel[3709905]: removed shadow group 'builder' owned by 'builder' <86>Apr 27 08:47:49 groupadd[3709966]: group added to /etc/group: name=builder, GID=1872 <86>Apr 27 08:47:49 groupadd[3709966]: group added to /etc/gshadow: name=builder <86>Apr 27 08:47:49 groupadd[3709966]: new group: name=builder, GID=1872 <86>Apr 27 08:47:49 useradd[3710029]: new user: name=builder, UID=1872, GID=1872, home=/usr/src, shell=/bin/bash, from=none /usr/src/in/srpm/biew-6.1.0-alt4.src.rpm: The use of such a license name is ambiguous: GPL <13>Apr 27 08:47:52 rpmi: libgpm-devel-1.20.1-alt19 sisyphus+328124.100.1.1 1693248097 installed Building target platforms: i586 Building for target i586 Wrote: /usr/src/in/nosrpm/biew-6.1.0-alt4.nosrc.rpm (w1.gzdio) Installing biew-6.1.0-alt4.src.rpm Building target platforms: i586 Building for target i586 Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.78300 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + rm -rf biew-610 + echo 'Source #0 (biew-610-src.tar.bz2):' Source #0 (biew-610-src.tar.bz2): + /bin/bzip2 -dc /usr/src/RPM/SOURCES/biew-610-src.tar.bz2 + /bin/tar -xf - + cd biew-610 + /bin/chmod -c -Rf u+rwX,go-w . + exit 0 Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.78300 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd biew-610 + find . -type f + xargs sed -i 's|||g' + sed 's/|| die "Please upgrade your compiler"//' configure #!/bin/sh # Configure script for biew project # #set -x # Declare useful functions # Prefer these macros to full length text ! # These macros only return an error code - NO display is done log(){ echo "$@" >>"$TMPLOG" } log_file(){ log BEGIN $1 cat -n $1 >>"$TMPLOG" log END $1 } echolog(){ log "$@" echo "$@" } check_cmd(){ log "$@" "$@" >>"$TMPLOG" 2>&1 } set_all(){ value=$1 shift for var in $*; do eval $var=$value done } enable(){ set_all yes $* } disable(){ set_all no $* } enabled(){ eval test "x\$$1" = "xyes" } disabled(){ eval test "x\$$1" = "xno" } cc_check() { log_file "$TMPC" ( check_cmd $_cc $_cdefsys $_cdefos $_extraincdir $_extralibdir --verbose "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 2>&1 TMP="$?" echo >> "$TMPLOG" echo "ldd $TMPO" >> "$TMPLOG" ( ldd "$TMPO" ) >> "$TMPLOG" 2>&1 echo >> "$TMPLOG" return "$TMP" } check_cpp(){ log check_cpp "$@" cat >$TMPC log_file $TMPC check_cmd $_cc $CFLAGS $_extraincdir "$@" -E -o $TMPO $TMPC } check_header(){ log check_header "$@" header=$1 shift var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'` disable $var check_cpp "$@" < int x; EOF } check_cc(){ log check_cc "$@" cat >$TMPC log_file $TMPC check_cmd $_cc $CFLAGS $_cdefsys $_extraincdir "$@" -c -o $TMPO $TMPC } # Display error message, flushes tempfile, exit die () { echo echo "Error: $@" >&2 echo >&2 rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" echo "Check "$TMPLOG" if you do not understand why it failed." exit 1 } # Use this before starting a check echocheck() { echo "============ Checking for $@ ============" >> "$TMPLOG" echo ${_echo_n} "Checking for $@ ... ${_echo_c}" } # Use this to echo the results of a check echores() { echo "Result is: $@" >> "$TMPLOG" echo "##########################################" >> "$TMPLOG" echo "" >> "$TMPLOG" echo "$@" } ############################################################################# x86() { case "$host_arch" in i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) return 0;; *) return 1;; esac } x86_64() { case "$host_arch" in x86_64|amd64) return 0;; *) return 1;; esac } ppc() { case "$host_arch" in ppc) return 0 ;; *) return 1 ;; esac } alpha() { case "$host_arch" in alpha) return 0 ;; *) return 1 ;; esac } mips() { case "$host_arch" in mips) return 0 ;; *) return 1 ;; esac } sparc() { case "$host_arch" in sparc*) return 0 ;; *) return 1 ;; esac } arm() { case "$host_arch" in arm*) return 0 ;; *) return 1 ;; esac } # Check how echo works in this /bin/sh case `echo -n` in -n) _echo_n= _echo_c='\c' ;; # SysV echo *) _echo_n='-n ' _echo_c= ;; # BSD echo esac # 1st: print out help for parm in "$@" ; do if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then cat << EOF Usage: $0 [OPTIONS]... Configuration: -h, --help display this help and exit Installation directories: --prefix=DIR use this prefix for installing biew [/usr/local] --datadir=DIR use this prefix for installing machine independent data files (syntaxes, skins) [PREFIX/share/biew] --libdir=DIR use this prefix for installing machine dependent libraries and plugins (for future) [PREFIX/lib/biew] Base features: --cc=COMPILER use this C compiler to build biew [gcc] --ld=LINKER use this LD linker to link biew [ld] --ar=AR use this AR to build biewlib [ar] --ranlib=RANLIB use RANLIB to build indexes on builib [ranlib] --rm=RM use RM program to cleanup files [rm] --ln=LN use LN program to make soft link [ln] --cd=CD use CD program to change directory [cd] --cp=CP use CP program to copy files [cp] --target-system=SYSTEM target system (linux, freebsd, win32, etc) [auto,unix] --target-arch=ARCH target architecture (i386, alpha, etc) [auto,generic] --enable-debug[=1-3] compile debugging information into biew [disable] --enable-profile compile profiling information into biew [disable] --enable-gcov compile gnu coverage information into biew [disable] Optional features: --enable-slang disable S-Lang programming library [vt100] --enable-curses disable "curses" terminal control library [vt100] --disable-iconv disable iconv library [autodetect] Use these options if autodetection fails: --with-extraincdir=DIR extra headers (curses.h ...) in DIR --with-extralibdir=DIR extra library files (libncurses.so, ...) in DIR --with-x11incdir=DIR X headers in DIR --with-x11libdir=DIR X library files in DIR Environment variables: CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS specifies additional libs (like: export LIBS=-lacml_mv) DESTDIR specifies base of installation EOF exit 0 fi done # for parm in ... # 2nd: checking for options _cc=gcc _ld=gcc _ar="ar -rcu" _ranlib=ranlib _rm="rm -f" _ln=sln _cd=cd _cp=cp _libext=a _libprefix=lib test "$CC" && _cc="$CC" _prefix="/usr/local" _datadir= _libdir= _target_system=auto _target_arch=auto _x11incdir= _x11libdir= _profile= _gcov= _debug= _osldef= _oslibs= disable _curses disable _slang enable _iconv for ac_option do case "$ac_option" in --prefix=*) _prefix=`echo $ac_option | cut -d '=' -f 2` ;; --datadir=*) _datadir=`echo $ac_option | cut -d '=' -f 2` ;; --libdir=*) _libdir=`echo $ac_option | cut -d '=' -f 2` ;; --cc=*) _cc=`echo $ac_option | cut -d '=' -f 2` ;; --ld=*) _ld=`echo $ac_option | cut -d '=' -f 2` ;; --as=*) _as=`echo $ac_option | cut -d '=' -f 2` ;; --cd=*) _cd=`echo $ac_option | cut -d '=' -f 2` ;; --cp=*) _cp=`echo $ac_option | cut -d '=' -f 2` ;; --enable-profile) _profile='-pg' ;; --enable-gcov) _gcov='-fprofile-arcs -ftest-coverage' _oslibs="-lgcov" ;; --enable-debug) _debug='-g' ;; --enable-debug=*) _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2` ;; --ar=*) _ar=`echo $ac_option | cut -d '=' -f 2` ;; --ranlib=*) _ranlib=`echo $ac_option | cut -d '=' -f 2` ;; --rm=*) _rm=`echo $ac_option | cut -d '=' -f 2` ;; --ln=*) _ln=`echo $ac_option | cut -d '=' -f 2` ;; --target-system=*) _target_system=`echo $ac_option | cut -d '=' -f 2` ;; --target-arch=*) _target_arch=`echo $ac_option | cut -d '=' -f 2` ;; --with-extraincdir=*) _extraincdir="$_extraincdir -I`echo $ac_option | cut -d '=' -f 2`" ;; --with-extralibdir=*) _extralibdir="$_extralibdir -L`echo $ac_option | cut -d '=' -f 2`" ;; --with-x11incdir=*) _x11incdir=-I`echo $ac_option | cut -d '=' -f 2` ;; --with-x11libdir=*) _x11libdir=-L`echo $ac_option | cut -d '=' -f 2` ;; --disable-curses) disable _curses ;; --enable-curses) enable _curses ;; --disable-slang) disable _slang ;; --enable-slang) enable _slang ;; --disable-iconv) disable _iconv ;; --enable-iconv) enable _iconv ;; esac done test -z "$_datadir" && _datadir=$_prefix"/share/biew" test -z "$_libdir" && _libdir=$_prefix"/lib/biew" for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do test "$I" && break done TMPLOG="config.log" $_rm -f "$TMPLOG" TMPC="$I/biew-conf-$RANDOM-$$.c" TMPCPP="$I/biew-conf-$RANDOM-$$.cpp" TMPO="$I/biew-conf-$RANDOM-$$.o" TMPS="$I/biew-conf-$RANDOM-$$.S" TMPE="$I/biew-conf-$RANDOM-$$.exe" _tee="tee -a $TMPLOG" echocheck "architecture" if test "$_target_arch" = auto ; then if test -z "$host_arch" ; then host_arch=`( uname -p ) 2>&1` log "uname -p :" "$host_arch" case "$host_arch" in i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) ;; x86_64|amd64) ;; sparc|ppc|alpha|arm|mips) ;; *) # uname -p on Linux returns 'unknown' for the processor type, # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)' # Maybe uname -m (machine hardware name) returns something we # recognize. host_arch=`( uname -m ) 2>&1` log "uname -m :" "$host_arch" case "$host_arch" in i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) ;; x86_64|amd64) ;; ppc) ;; alpha) ;; sparc*) ;; arm*) ;; *) ;; esac ;; esac fi else host_arch=$_target_arch fi echores "$host_arch" echocheck "build" build_arch=generic x86 && build_arch=ia32 x86_64 && build_arch=x86_64 ppc && build_arch=ppc alpha && build_arch=alpha sparc && build_arch=sparc mips && build_arch=mips arm && build_arch=arm echores "$build_arch" _bitness=32 x86_64 && _bitness=64 echocheck "target OS" if test "$_target_system" = auto ; then if test -z "$system_name" ; then # OS name system_name=`uname -s` log "uname -s :" "$system_name" case "$system_name" in *[Ll]inux*) _target_system=linux ;; *QNX*) echo `uname -v` | grep ^42 if test $? -eq 0 then _target_system=qnx build_arch=ia32 _install=cp else _target_system=qnxnto _install=cp fi ;; *[cC][yY][gG][wW][iI][nN]*) _target_system=win32 ;; *MINGW32*) _target_system=win32 ;; *[eE][mM][xX]*) _target_system=os2 ;; *msdosdjgpp*) _target_system=dos build_arch=ia32 _tee= ;; # |FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|BeOS) # *) # _target_system=unix # ;; esac else _target_system=auto fi fi if test "$_target_system" = auto ; then if test -z "$system_name" ; then # OS name system_name=`/bin/sh --version 2>&1 | sed -n 's/^.*\([(]\)./\1/p'` log "/bin/sh --version:" "$system_name" case "$system_name" in *linux*) _target_system=linux ;; *[cC][yY][gG][wW][iI][nN]*) _target_system=win32 ;; *[eE][mM][xX]*) _target_system=os2 ;; *msdosdjgpp*) _target_system=dos build_arch=ia32 _tee= ;; # |FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|BeOS) *) _target_system=unix ;; esac else _target_system=unix fi fi echores "$_target_system" echo "Detected host..."$system_name _cdefos="-DDATADIR='\"$_datadir\"'" cc_name=`$_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1` cc_version=`$_cc -dumpversion` echocheck "C compiler name" echores $cc_name case $cc_name in gcc) ;; *) die "Unknown compiler name $cc_name. Project required GCC" ;; esac echocheck "C compiler version" echores $cc_version case $cc_version in [0-2]|[0-2].[0-9]|[0-2].[0-9].[0-9]) die "Please upgrade your gcc upto gcc-3.0 at least" ;; esac # Printout architecture _cdefsys= case "$build_arch" in ia32) # TODO: enable >386 optimizations here _cdefsys="-m32 -D__MACHINE__=ia32 -D__CPU_NAME__='\"ia32\"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1" _osldef="-m32 $_osldef" case $cc_version in 3.[0-9]|3.[0-9].[0-9]|4.[0-9].[0-9]) _cdefsys="-D__ENABLE_FASTCALL=1 $_cdefsys" ;; esac ;; x86_64) # TODO: enable >386 optimizations here _cdefsys="-m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='\"x86_64\"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1" _osldef="-m64 $_osldef" case $cc_version in 3.[0-9]|3.[0-9].[0-9]|4.[0-9].[0-9]) _cdefsys="-D__ENABLE_FASTCALL=1 $_cdefsys" ;; esac ;; *) _cdefsys="-D__MACHINE__=generic -D__CPU_NAME__='\"generic\"' -D__DEFAULT_DISASM=0" echo "It seems noone has ported biew to your OS or CPU type yet." echo "using $build_arch architecture" ;; esac if test -z "$_x11incdir" ; then echocheck "X11 headers" for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do if test -d "$I/X11" ; then _x11incdir="-I$I" echores "yes (using $I)" break fi done fi if test -z "$_x11incdir" ; then echores "x11inc not found" fi if test -z "$_x11libdir" ; then echocheck "X11 libs" for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do if test -d "$I" ; then _x11libdir="-L$I" echores "yes (using $I)" break; fi done fi if test -z "$_x11libdir" ; then echores "x11lib not found" fi test -z "$_debug" && _osldef="-s $_osldef" || _cdefos="-finline-limit-5 $_cdefos" if test "$_profile" -o "$_debug" -o "$_gcov"; then _cdefos="-W -Wall -O2 -fno-builtin $_debug $_profile $_gcov $_cdefos" _osldef="$_debug $_profile $_osldef" elif test -z "$CFLAGS" ; then _cdefos="-DNDEBUG=1 -O2 -ffast-math -fomit-frame-pointer $_cdefos" x86 && _cdefos="-mmmx -msse $_cdefos" else _cdefos="-DNDEBUG=1 $CFLAGS $_cdefos" fi test -n "$LDFLAGS" && _osldef="$LDFLAGS $_osldef" test -n "$LIBS" && _osldef="$LIBS $_osldef" if test "$_target_system" = dos ; then # disable cc_check call for DJGPP due bugs in bash _cdefos="-D__HAVE_PRAGMA_PACK__=1 $_cdefos" else echocheck "pragma pack" cat > $TMPC << EOF #pragma pack(1) int main(void){return 0;} EOF disable _ppack cc_check && enable _ppack enabled _ppack && _cdefos="-D__HAVE_PRAGMA_PACK__=1 $_cdefos" echores "$_ppack" fi #Printout operating system case "$_target_system" in dos) _cdefos="-D__MSDOS__ -D__OS_NAME__='\"DOS$_bitness\"' -D__OS__=\"dos\" -Udos $_cdefos" _osldef="--force-exe-suffix $_osldef" ;; os2) _cdefos="-D__OS2__ -D__OS_NAME__='\"OS/2-$_bitness\"' -Zomf -D__OS__=\"os2\" -Uos2 $_cdefos" # here I want to have static link of glibc instead emx.dll _osldef="-Zexe -Zsmall-conv -Zsys -Zomf -Zstack 1024 $_osldef" _ar="emxomfar -p32 rc" _ranlib=echo _libext=lib _libprefix= ;; win32) # I named this as win32 because of exists Win386 by Watcom. # here I link crtdll.dll instead cygwin1.dll (it's safe) _cdefos="-D__WIN32__ -D__OS_NAME__='\"Win$_bitness\"' -mno-cygwin -D__OS__=\"win32\" -Uwin32 $_cdefos" _osldef="-mno-cygwin --force-exe-suffix $_osldef" _oslibs="-lwinmm $_oslibs" ;; beos) _cdefos="-D__BEOS__ -D__UNIX__ -D__OS_NAME__='\"BeOS$_bitness\"' -D__OS__=\"beos\" -Ubeos -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DDATADIR='\"/boot/home/config/lib\"' -D__DISABLE_MMF -D__DISABLE_ASM -D__DISABLE_SIGIO -DPREFIX=\"$_prefix\" $_cdefos" ;; qnx) _cdefos="-D__QNX4__ -D__UNIX__ -D__OS_NAME__='\"QNX4-$_bitness\"' -D__OS__=\"qnx\" -U__QNX__ -D_VT100_ -DHAVE_TERMINAL_OUT=1 -D__DISABLE_MMF -DPREFIX=\"$_prefix\" $_cdefos" _oslibs="-ltermlib -lunix -lphoton3r.lib $_oslibs" ;; qnxnto) _cdefos="-D__QNX6__ -D__UNIX__ -D__OS_NAME__='\"QNX6-$_bitness\"' -D__OS__=\"qnxnto\" -U__QNX__ -U__NTO__ -D_VT100_ -DHAVE_TERMINAL_OUT=1 -D__DISABLE_MMF -DPREFIX=\"$_prefix\" $_cdefos" _oslibs="-lncurses $_oslibs" ;; linux) _cdefos="-D__LINUX__ -D__UNIX__ -D__OS_NAME__='\"Linux$_bitness\"' -D__OS__=\"linux\" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX=\"$_prefix\" $_cdefos" echocheck "gpm.h" check_header gpm.h enabled gpm_h && _cdefos="-DHAVE_MOUSE $_cdefos" && _oslibs="-lgpm $_oslibs" echores "$gpm_h" ;; unix) _cdefos="-D__UNIX__ -D__OS__=\"unix\" -Uunix -DHAVE_TERMINAL_OUT=1 $_cdefos" echocheck "gpm.h" check_header gpm.h enabled gpm_h && _cdefos="-DHAVE_MOUSE $_cdefos" && _oslibs="-lgpm $_oslibs" echores "$gpm_h" if enabled _slang; then echocheck "slang.h" check_header slang.h enabled slang_h && _cdefos="-D_SLANG_ -D__OS_NAME__='\"Unix/Slang\"' $_cdefos" enabled slang_h && _oslibs="-lslang $_oslibs" || disable _slang echores "$slang_h" fi if enabled _curses -a disabled _slang; then echocheck "curses.h" cat > $TMPC << EOF #include int main(void) {return 0;} EOF _curseslib= disable _curses cc_check -lcurses && _curseslib="-lcurses" if test -z "$_curseslib" ; then cc_check -lncurses && _curseslib="-lncurses" fi if test -n "$_curseslib" ; then enable _curses _cdefos="-D_CURSES_ -D__OS_NAME__='\"Unix/Curses\"' $_cdefos" _oslibs="$_curseslib $_oslibs" fi echores "$_curses" fi disabled _curses -a disabled _slang && _cdefos="-D_VT100_ -D__OS_NAME__='\"Unix/VT100\"' $_cdefos" disabled _curses -a disabled _slang && echo "Defaulting to VT100" ;; *) ;; esac echocheck "checking for popen" cat > $TMPC << EOF #include int main(void){(void)popen; return 0;} EOF disable _popen cc_check && enable _popen enabled _popen && _cdefos="-DHAVE_POPEN=1 $_cdefos" echores "$_popen" echocheck "checking for pclose" cat > $TMPC << EOF #include int main(void){(void)pclose; return 0;} EOF disable _pclose cc_check && enable _pclose enabled _pclose && _cdefos="-DHAVE_PCLOSE=1 $_cdefos" echores "$_pclose" echocheck "checking for sys/resource.h" check_header sys/resource.h enabled sys_resource_h && _cdefos="-DHAVE_SYS_RESOURCE=1 $_cdefos" echores "$sys_resource_h" if test -z "$_x11libdir" ; then _cdefos="$_cdefos" else if test -z "$_x11incdir" ; then _cdefos="$_cdefos" else _cdefos="-DHAVE_X11 $_cdefos" fi fi if enabled _iconv; then disable _iconv echocheck "iconv" cat > $TMPC << EOF #include int main(void) { iconv_open(0,0); return 0; } EOF cc_check && enable _iconv if disabled _iconv; then cc_check -liconv && enable _iconv enabled _iconv && _oslibs="-liconv $_oslibs" fi enabled _iconv && _cdefos="-DHAVE_ICONV $_cdefos" echores "$_iconv" fi # Checking for INSTALL if test -z $_install then _install="install" $_install --version 1>/dev/null 2>/dev/null || _install="" fi #Force including of our .h files before standard _cdefos="-I. $_cdefos" ############################################################################# echo "Creating config.mak" cat > config.mak << EOF # -------- Generated by configure ----------- CC=$_cc LD=$_ld AR=$_ar RANLIB=$_ranlib RM=$_rm LN=$_ln CD=$_cd CP=$_cp INSTALL=$_install LIBEXT=$_libext LIBPREFIX=$_libprefix PREFIX=$_prefix DATADIR=$_datadir LIBDIR=$_libdir DESTDIR=$DESTDIR HOST=$_target_system MACHINE=$build_arch CDEFOS=$_cdefos $_extraincdir $_x11incdir OSLDEF=$_osldef OS_LIBS=$_extralibdir $_x11libdir $_oslibs CDEFSYS=$_cdefsys EOF #last: printout configure cat << EOF | $_tee Config files successfully generated by ./configure ! Install prefix: $_prefix Data directory: $_datadir Lib directory: $_libdir Compiler: $_cc Linker: $_ld Librarian: $_ar Ranlib: $_ranlib Remover: $_rm TARGETS system: $_target_system arch: $build_arch EOF $_rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" "$TMPE" + export 'CFLAGS=-O2 -mmmx -msse' + CFLAGS='-O2 -mmmx -msse' + CFLAGS='-O2 -mmmx -msse' + export CFLAGS + CXXFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic' + export CXXFLAGS + FFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic' + export FFLAGS + FCFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic' + export FCFLAGS + '[' -n '' ']' ++ printf %s '-pipe -frecord-gcc-switches -Wall -g -O2 -flto=auto -march=i586 -mtune=generic' ++ sed -r 's/(^|[[:space:]]+)-[^m][^[:space:]]*//g' + ASFLAGS=' -march=i586 -mtune=generic' + export ASFLAGS + export lt_cv_deplibs_check_method=pass_all + lt_cv_deplibs_check_method=pass_all + readlink -e -- ./configure + xargs -ri dirname -- '{}' + xargs -ri find '{}' -type f '(' -name config.sub -or -name config.guess ')' -printf '%h/\n' + sort -u + xargs -rn1 install -pm755 -- /usr/share/gnu-config/config.sub /usr/share/gnu-config/config.guess + configure_runstatedir_flags= + grep -qF runstatedir=DIR ./configure + echo 'rpm-build: warning: ./configure script does not support --runstatedir' rpm-build: warning: ./configure script does not support --runstatedir + ./configure --build=i586-alt-linux --host=i586-alt-linux --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib --libexecdir=/usr/lib --localstatedir=/var/lib --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --disable-silent-rules --without-included-gettext Checking for architecture ... i686 Checking for build ... ia32 Checking for target OS ... linux Detected host...Linux Checking for C compiler name ... gcc Checking for C compiler version ... 13 Checking for X11 headers ... x11inc not found Checking for X11 libs ... x11lib not found Checking for pragma pack ... yes Checking for gpm.h ... yes Checking for checking for popen ... yes Checking for checking for pclose ... yes Checking for checking for sys/resource.h ... yes Checking for iconv ... yes Creating config.mak Config files successfully generated by ./configure ! Install prefix: /usr Data directory: /usr/share Lib directory: /usr/lib Compiler: gcc Linker: gcc Librarian: ar -rcu Ranlib: ranlib Remover: rm -f TARGETS system: linux arch: ia32 + make -j16 TARGET_PLATFORM=i586 USE_MOUSE=y make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/mouse.c -o biewlib/sysdep/ia32/linux/mouse.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/mmfio.c -o biewlib/sysdep/ia32/linux/mmfio.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/pmalloc.c -o biewlib/pmalloc.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/tw_class.c -o biewlib/tw_class.o biewlib/tw_class.c: In function 'twcFindClass': biewlib/tw_class.c:74:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 74 | key.name = name; | ^ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/misc.c -o biewlib/sysdep/ia32/linux/misc.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/timer.c -o biewlib/sysdep/ia32/linux/timer.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addendum.c -o addendum.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/os_dep.c -o biewlib/sysdep/ia32/linux/os_dep.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/nls.c -o biewlib/sysdep/ia32/linux/nls.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/fileio.c -o biewlib/sysdep/ia32/linux/fileio.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/aclib.c -o biewlib/sysdep/ia32/aclib.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/keyboard.c -o biewlib/sysdep/ia32/linux/keyboard.o In file included from ./biewlib/sysdep/ia32/_inlines.h:47, from ./biewlib/sysdep/_sys_dep.h:31, from ./biewlib/biewlib.h:25, from ./biewlib/kbd_code.h:17, from biewlib/sysdep/ia32/linux/keyboard.c:41: biewlib/sysdep/ia32/linux/keyboard.c: In function 'console_enter': biewlib/sysdep/ia32/linux/keyboard.c:303:12: warning: passing argument 1 of 'fast_memset_ptr' discards 'volatile' qualifier from pointer target type [-Wdiscarded-array-qualifiers] 303 | memset(&keypressed, 0, KEYNUM * sizeof(int)); | ^~~~~~~~~~~ ./biewlib/sysdep/ia32/fastcopy.h:17:42: note: in definition of macro 'memset' 17 | #define memset(a,b,c) (*fast_memset_ptr)(a,b,c) | ^ biewlib/sysdep/ia32/linux/keyboard.c:303:12: note: expected 'void *' but argument is of type 'volatile int (*)[128]' 303 | memset(&keypressed, 0, KEYNUM * sizeof(int)); | ^~~~~~~~~~~ ./biewlib/sysdep/ia32/fastcopy.h:17:42: note: in definition of macro 'memset' 17 | #define memset(a,b,c) (*fast_memset_ptr)(a,b,c) | ^ biewlib/sysdep/ia32/linux/keyboard.c: In function 'ReadNextEvent': biewlib/sysdep/ia32/linux/keyboard.c:314:17: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result] 314 | #define get(x) read(in_fd,&(x),1) | ^~~~~~~~~~~~~~~~~~ biewlib/sysdep/ia32/linux/keyboard.c:354:18: note: in expansion of macro 'get' 354 | do { get(c); } while (c == 0xe0); | ^~~ biewlib/sysdep/ia32/linux/keyboard.c:314:17: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result] 314 | #define get(x) read(in_fd,&(x),1) | ^~~~~~~~~~~~~~~~~~ biewlib/sysdep/ia32/linux/keyboard.c:355:28: note: in expansion of macro 'get' 355 | if (c == 0xe1) get(c); | ^~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/biewlib.c -o biewlib/biewlib.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/linux/vio.c -o biewlib/sysdep/ia32/linux/vio.o In file included from biewlib/sysdep/ia32/linux/vio.c:1: ./biewlib/sysdep/generic/linux/vio.c: In function '__init_vio': ./biewlib/sysdep/generic/linux/vio.c:355:8: warning: implicit declaration of function 'strncasecmp' [-Wimplicit-function-declaration] 355 | if(strncasecmp(screen_cp,"UTF",3)==0 && !on_console) { | ^~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:355:36: warning: 'strncasecmp' argument 3 type is 'int' where 'unsigned int' is expected in a call to built-in function declared without prototype [-Wbuiltin-declaration-mismatch] 355 | if(strncasecmp(screen_cp,"UTF",3)==0 && !on_console) { | ^ : note: built-in 'strncasecmp' declared here ./biewlib/sysdep/generic/linux/vio.c:412:18: warning: implicit declaration of function 'strcasecmp' [-Wimplicit-function-declaration] 412 | (strcasecmp(lang, "ru_RU.utf8") != 0) && | ^~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c: In function '__vioSetCursorType': ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:171:9: note: in expansion of macro 'twrite' 171 | twrite(vtmp); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:174:5: note: in expansion of macro 'twrite' 174 | twrite(vtmp); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c: In function 'gotoxy': ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:158:5: note: in expansion of macro 'twrite' 158 | twrite(vtmp); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c: In function '__vioWriteBuff': ./biewlib/sysdep/generic/linux/vio.c:49:16: warning: ignoring return value of 'pwrite' declared with attribute 'warn_unused_result' [-Wunused-result] 49 | #define PWRITE pwrite | ^ ./biewlib/sysdep/generic/linux/vio.c:223:9: note: in expansion of macro 'PWRITE' 223 | PWRITE(viohandle, pb, len << 1, 4 + ((x + y * tvioWidth) << 1)); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c: In function '__init_vio': ./biewlib/sysdep/generic/linux/vio.c:344:9: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result] 344 | read(viohandle, &b, 4); | ^~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:387:13: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result] 387 | read(viohandle, buf, violen << 1); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:395:9: note: in expansion of macro 'twrite' 395 | twrite(VT100_NORMALCHARS VT100_MODE80); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:400:17: note: in expansion of macro 'twrite' 400 | twrite("\033[?1000h\033]0;BIEW: Binary vIEWer\007"); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:407:21: note: in expansion of macro 'twrite' 407 | twrite("\033(K\033)0"); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:418:18: note: in expansion of macro 'twrite' 418 | else twrite("\033(U"); /* set null mapping */ | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c: In function '__term_vio': ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:430:43: note: in expansion of macro 'twrite' 430 | if (terminal->type == TERM_XTERM) twrite("\033[?1001r\033[?1000l"); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:432:13: note: in expansion of macro 'twrite' 432 | twrite("\033(K"); | ^~~~~~ ./biewlib/sysdep/generic/linux/vio.c:87:25: warning: ignoring return value of 'write' declared with attribute 'warn_unused_result' [-Wunused-result] 87 | #define twrite(x) write(out_fd, (x), strlen(x)) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ./biewlib/sysdep/generic/linux/vio.c:433:9: note: in expansion of macro 'twrite' 433 | twrite(VT100_MODE80 VT100_NORMALCHARS VT100_CLEARSCREEN); | ^~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewutil.c -o biewutil.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c codeguid.c -o codeguid.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/bbio.c -o biewlib/bbio.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c bin_util.c -o bin_util.o bin_util.c: In function 'udnAddItem': bin_util.c:192:34: warning: format '%X' expects argument of type 'unsigned int', but argument 3 has type 'tUInt64' {aka 'long long unsigned int'} [-Wformat=] 192 | sprintf(prompt," Name for %08X offset: ",off); | ~~~^ ~~~ | | | | | tUInt64 {aka long long unsigned int} | unsigned int | %08llX bin_util.c: In function '__udnLoadList': bin_util.c:330:17: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result] 330 | fgets(buff,sizeof(buff),in); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c bmfile.c -o bmfile.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewhelp.c -o biewhelp.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c refs.c -o refs.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c editors.c -o editors.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c events.c -o events.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c colorset.c -o colorset.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biew.c -o biew.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c tstrings.c -o tstrings.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c sysinfo.c -o sysinfo.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/sys/ascii.c -o addons/sys/ascii.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c info_win.c -o info_win.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/sys/consinfo.c -o addons/sys/consinfo.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/sys/cpu_perf.c -o addons/sys/cpu_perf.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c setup.c -o setup.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/sys/inview.c -o addons/sys/inview.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c mainloop.c -o mainloop.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/sysdep/ia32/cpu_info.c -o biewlib/sysdep/ia32/cpu_info.o In file included from biewlib/sysdep/ia32/cpu_info.c:710: ./biewlib/sysdep/ia16/cmn_ix86.c: In function '__FillCPUInfo': ./biewlib/sysdep/ia16/cmn_ix86.c:1068:14: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=] 1068 | " %d/%d - Maximal linear / physical address size (bits)\n" | ~^ | | | int | %ld 1069 | ,(__eax>>8)&0xFF,(__eax)&0xFF); | ~~~~~~~~~~~~~~~ | | | long unsigned int ./biewlib/sysdep/ia16/cmn_ix86.c:1068:17: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=] 1068 | " %d/%d - Maximal linear / physical address size (bits)\n" | ~^ | | | int | %ld 1069 | ,(__eax>>8)&0xFF,(__eax)&0xFF); | ~~~~~~~~~~~~ | | | long unsigned int ./biewlib/sysdep/ia16/cmn_ix86.c:1078:16: warning: format '%X' expects argument of type 'unsigned int', but argument 3 has type 'long unsigned int' [-Wformat=] 1078 | " %02X - SVM revision\n" | ~~~^ | | | unsigned int | %02lX 1079 | ,(__eax)&0xFF); | ~~~~~~~~~~~~ | | | long unsigned int biewlib/sysdep/ia32/cpu_info.c: Assembler messages: biewlib/sysdep/ia32/cpu_info.c:477: Warning: no instruction mnemonic suffix given and no register operands; using default for `fild' biewlib/sysdep/ia32/cpu_info.c:478: Warning: no instruction mnemonic suffix given and no register operands; using default for `fistp' biewlib/sysdep/ia32/cpu_info.c:517: Warning: no instruction mnemonic suffix given and no register operands; using default for `fild' biewlib/sysdep/ia32/cpu_info.c:518: Warning: no instruction mnemonic suffix given and no register operands; using default for `fistp' make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c dialogs.c -o dialogs.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/bin.c -o plugins/bin/bin.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/aout.c -o plugins/bin/aout.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/arch.c -o plugins/bin/arch.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/bmp.c -o plugins/bin/bmp.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/asf.c -o plugins/bin/asf.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/dos_sys.c -o plugins/bin/dos_sys.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/file_ini.c -o biewlib/file_ini.o biewlib/file_ini.c: In function '__addCache': biewlib/file_ini.c:1321:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1321 | ic.item = section; | ^ biewlib/file_ini.c:1351:15: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1351 | ic.item = subsection; | ^ biewlib/file_ini.c:1380:17: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1380 | ic.item = item; | ^ biewlib/file_ini.c: In function 'iniReadProfileString': biewlib/file_ini.c:1615:19: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1615 | ic.item = section; | ^ biewlib/file_ini.c:1619:20: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1619 | ic.item=subsection; | ^ biewlib/file_ini.c:1623:24: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1623 | ic.item = _item; | ^ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/avi.c -o plugins/bin/avi.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/jpeg.c -o plugins/bin/jpeg.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c bconsole.c -o bconsole.o bconsole.c: In function '__ListBox': bconsole.c:872:25: warning: format not a string literal and no format arguments [-Wformat-security] 872 | fprintf(out,names[i]); | ^~~~~~~ bconsole.c:877:23: warning: format not a string literal and no format arguments [-Wformat-security] 877 | else fprintf(out,names[i]); | ^~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/mov.c -o plugins/bin/mov.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/tools/dig_conv.c -o addons/tools/dig_conv.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c search.c -o search.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c addons/tools/eval.c -o addons/tools/eval.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/mpeg.c -o plugins/bin/mpeg.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/le.c -o plugins/bin/le.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/opharlap.c -o plugins/bin/opharlap.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/mp3.c -o plugins/bin/mp3.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c fileutil.c -o fileutil.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/realmedia.c -o plugins/bin/realmedia.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/mz.c -o plugins/bin/mz.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/pharlap.c -o plugins/bin/pharlap.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c biewlib/twin.c -o biewlib/twin.o biewlib/twin.c: In function 'twPutS': biewlib/twin.c:1896:17: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1896 | else __nls = str; | ^ biewlib/twin.c:1898:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1898 | else __nls = str; | ^ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/lmf.c -o plugins/bin/lmf.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/rdoff2.c -o plugins/bin/rdoff2.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/coff386.c -o plugins/bin/coff386.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/sis.c -o plugins/bin/sis.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/sisx.c -o plugins/bin/sisx.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/wav.c -o plugins/bin/wav.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/jvmclass.c -o plugins/bin/jvmclass.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/nlm386.c -o plugins/bin/nlm386.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/null_da.c -o plugins/disasm/null_da.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/lx.c -o plugins/bin/lx.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/nls/russian.c -o plugins/nls/russian.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/binmode.c -o plugins/binmode.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/rdoff.c -o plugins/bin/rdoff.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/arm/arm.c -o plugins/disasm/arm/arm.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' ar -rcu biewlib/libbiew.a biewlib/bbio.o biewlib/biewlib.o biewlib/file_ini.o biewlib/pmalloc.o biewlib/twin.o biewlib/tw_class.o biewlib/sysdep/ia32/aclib.o biewlib/sysdep/ia32/cpu_info.o biewlib/sysdep/ia32/linux/fileio.o biewlib/sysdep/ia32/linux/keyboard.o biewlib/sysdep/ia32/linux/mmfio.o biewlib/sysdep/ia32/linux/mouse.o biewlib/sysdep/ia32/linux/misc.o biewlib/sysdep/ia32/linux/nls.o biewlib/sysdep/ia32/linux/os_dep.o biewlib/sysdep/ia32/linux/timer.o biewlib/sysdep/ia32/linux/vio.o ar: `u' modifier ignored since `D' is the default (see `U') ranlib biewlib/libbiew.a make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/avr/avr.c -o plugins/disasm/avr/avr.o plugins/disasm/avr/avr.c: In function 'avr_operand': plugins/disasm/avr/avr.c:146:9: warning: format not a string literal and no format arguments [-Wformat-security] 146 | sprintf (buf, xyz); | ^~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/java/java.c -o plugins/disasm/java/java.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/arm/arm16.c -o plugins/disasm/arm/arm16.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/hexmode.c -o plugins/hexmode.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/ix86/ix86_fpu.c -o plugins/disasm/ix86/ix86_fpu.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/ne.c -o plugins/bin/ne.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/pe.c -o plugins/bin/pe.o plugins/bin/pe.c: In function '__ReadImpContPE': plugins/bin/pe.c:599:53: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'unsigned int' [-Wformat=] 599 | else sprintf(tmp,"< By ordinal > @%lu" ,(tUInt32)(Hint & 0x7FFFFFFFUL)); | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | | | unsigned int | long unsigned int | %u plugins/bin/pe.c: In function 'BuildReferStrPE': plugins/bin/pe.c:1017:26: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'tUInt64' {aka 'long long unsigned int'} [-Wformat=] 1017 | sprintf(dig,"@%lu",Hint & 0x7FFFFFFFUL); | ~~^ ~~~~~~~~~~~~~~~~~~~ | | | | | tUInt64 {aka long long unsigned int} | long unsigned int | %llu make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/arm/arm32.c -o plugins/disasm/arm/arm32.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/ppc/ppc.c -o plugins/disasm/ppc/ppc.o make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/textmode.c -o plugins/textmode.o plugins/textmode.c: In function 'txtFiUserFunc1': plugins/textmode.c:322:23: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 322 | unfmt_str(info->value); | ~~~~^~~~~~~ plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *' 247 | static void unfmt_str(unsigned char *str) | ~~~~~~~~~~~~~~~^~~ plugins/textmode.c: In function 'txtFiUserFunc2': plugins/textmode.c:438:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 438 | unfmt_str(info->value); | ~~~~^~~~~~~ plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *' 247 | static void unfmt_str(unsigned char *str) | ~~~~~~~~~~~~~~~^~~ plugins/textmode.c:457:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 457 | unfmt_str(info->value); | ~~~~^~~~~~~ plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *' 247 | static void unfmt_str(unsigned char *str) | ~~~~~~~~~~~~~~~^~~ plugins/textmode.c:473:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 473 | unfmt_str(info->value); | ~~~~^~~~~~~ plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *' 247 | static void unfmt_str(unsigned char *str) | ~~~~~~~~~~~~~~~^~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm.c -o plugins/disasm.o plugins/disasm.c: In function 'FullAsmEdit': plugins/disasm.c:606:53: warning: '0' flag ignored with precision and '%x' gnu_printf format [-Wformat=] 606 | sprintf(bytebuffer, "%0.2x", aret.insn[i]); | ^~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/ix86/ix86.c -o plugins/disasm/ix86/ix86.o plugins/disasm/ix86/ix86.c:1448:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1448 | /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1448:28: note: (near initialization for 'ix86_extable[56].name') 1448 | /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1448:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1448 | /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1448:44: note: (near initialization for 'ix86_extable[56].name64') 1448 | /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1450:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1450 | /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1450:28: note: (near initialization for 'ix86_extable[58].name') 1450 | /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1450:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1450 | /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1450:44: note: (near initialization for 'ix86_extable[58].name64') 1450 | /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1558:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1558 | /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1558:28: note: (near initialization for 'ix86_extable[166].name') 1558 | /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1558:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1558 | /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1558:44: note: (near initialization for 'ix86_extable[166].name64') 1558 | /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1559:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1559 | /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1559:28: note: (near initialization for 'ix86_extable[167].name') 1559 | /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1559:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 1559 | /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:1559:44: note: (near initialization for 'ix86_extable[167].name64') 1559 | /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN' 330 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:2966:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 2966 | /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:2966:28: note: (near initialization for 'ix86_660F_PentiumTable[1].name') 2966 | /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:2966:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 2966 | /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:2966:46: note: (near initialization for 'ix86_660F_PentiumTable[1].name64') 2966 | /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3021:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3021 | /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3021:28: note: (near initialization for 'ix86_660F_PentiumTable[56].name') 3021 | /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3021:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3021 | /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3021:46: note: (near initialization for 'ix86_660F_PentiumTable[56].name64') 3021 | /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3023:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3023 | /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3023:28: note: (near initialization for 'ix86_660F_PentiumTable[58].name') 3023 | /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3023:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3023 | /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3023:46: note: (near initialization for 'ix86_660F_PentiumTable[58].name64') 3023 | /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3541:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3541 | /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3541:28: note: (near initialization for 'ix86_F20F_PentiumTable[56].name') 3541 | /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3541:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types] 3541 | /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c:3541:46: note: (near initialization for 'ix86_F20F_PentiumTable[56].name64') 3541 | /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE), | ^~~~~~~~~~~~~~~~~ plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN' 1912 | { n32, n64, func, func64, flags64, flags } | ^~~ plugins/disasm/ix86/ix86.c: In function 'ix86Asm': plugins/disasm/ix86/ix86.c:5698:5: warning: ignoring return value of 'system' declared with attribute 'warn_unused_result' [-Wunused-result] 5698 | system(commandbuffer); | ^~~~~~~~~~~~~~~~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/bin/elf386.c -o plugins/bin/elf386.o plugins/bin/elf386.c: In function '__elfReadSymTab': plugins/bin/elf386.c:870:36: warning: format '%lX' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=] 870 | sprintf(stmp,"%-29s %016llX %08lX %04hX %s %s %s" | ~~~~^ | | | long unsigned int | %08X plugins/bin/elf386.c:880:28: warning: format '%lX' expects argument of type 'long unsigned int', but argument 4 has type 'unsigned int' [-Wformat=] 880 | sprintf(stmp,"%-37s %08lX %08lX %04hX %s %s %s" | ~~~~^ | | | long unsigned int | %08X plugins/bin/elf386.c:880:34: warning: format '%lX' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=] 880 | sprintf(stmp,"%-37s %08lX %08lX %04hX %s %s %s" | ~~~~^ | | | long unsigned int | %08X make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux32"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"' -m32 -D__MACHINE__=ia32 -D__CPU_NAME__='"ia32"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1 -I. -c plugins/disasm/ix86/ix86_fun.c -o plugins/disasm/ix86/ix86_fun.o plugins/disasm/ix86/ix86_fun.c: In function 'arg_simd_clmul': plugins/disasm/ix86/ix86_fun.c:1710:22: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=] 1710 | name[namlen] = 0; | ~~~~~~~~~~~~~^~~ plugins/disasm/ix86/ix86_fun.c:1695:9: note: at offset [8, 9] into destination object 'name' of size 6 1695 | char name[6], realname[10]; | ^~~~ In file included from /usr/include/string.h:548, from plugins/disasm/ix86/ix86_fun.c:21: In function 'strncpy', inlined from 'arg_simd_clmul' at plugins/disasm/ix86/ix86_fun.c:1709:2: /usr/include/bits/string_fortified.h:95:10: warning: '__builtin___strncpy_chk' writing between 8 and 9 bytes into a region of size 6 overflows the destination [-Wstringop-overflow=] 95 | return __builtin___strncpy_chk (__dest, __src, __len, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 96 | __glibc_objsize (__dest)); | ~~~~~~~~~~~~~~~~~~~~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/biew-610' make: Entering directory '/usr/src/RPM/BUILD/biew-610' gcc -s -m32 -o biew addendum.o bconsole.o biew.o biewhelp.o biewutil.o bin_util.o bmfile.o codeguid.o colorset.o dialogs.o editors.o events.o fileutil.o info_win.o mainloop.o refs.o search.o setup.o sysinfo.o tstrings.o addons/sys/ascii.o addons/sys/consinfo.o addons/sys/cpu_perf.o addons/sys/inview.o addons/tools/dig_conv.o addons/tools/eval.o plugins/bin/aout.o plugins/bin/arch.o plugins/bin/asf.o plugins/bin/avi.o plugins/bin/bin.o plugins/bin/bmp.o plugins/bin/coff386.o plugins/bin/dos_sys.o plugins/bin/elf386.o plugins/bin/jpeg.o plugins/bin/jvmclass.o plugins/bin/le.o plugins/bin/lmf.o plugins/bin/lx.o plugins/bin/mov.o plugins/bin/mp3.o plugins/bin/mpeg.o plugins/bin/mz.o plugins/bin/ne.o plugins/bin/nlm386.o plugins/bin/opharlap.o plugins/bin/pe.o plugins/bin/pharlap.o plugins/bin/rdoff.o plugins/bin/rdoff2.o plugins/bin/realmedia.o plugins/bin/sis.o plugins/bin/sisx.o plugins/bin/wav.o plugins/binmode.o plugins/disasm.o plugins/hexmode.o plugins/textmode.o plugins/nls/russian.o plugins/disasm/null_da.o plugins/disasm/arm/arm.o plugins/disasm/arm/arm16.o plugins/disasm/arm/arm32.o plugins/disasm/avr/avr.o plugins/disasm/ppc/ppc.o plugins/disasm/java/java.o plugins/disasm/ix86/ix86.o plugins/disasm/ix86/ix86_fpu.o plugins/disasm/ix86/ix86_fun.o -L./biewlib -lbiew -lgpm make: Leaving directory '/usr/src/RPM/BUILD/biew-610' + exit 0 Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.38488 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + /bin/chmod -Rf u+rwX -- /usr/src/tmp/biew-buildroot + : + /bin/rm -rf -- /usr/src/tmp/biew-buildroot + PATH=/usr/libexec/rpm-build:/usr/src/bin:/usr/bin:/bin:/usr/local/bin:/usr/games + cd biew-610 + install -d /usr/src/tmp/biew-buildroot//usr/bin /usr/src/tmp/biew-buildroot//usr/share/biew /usr/src/tmp/biew-buildroot//usr/share/man/man1 + install biew /usr/src/tmp/biew-buildroot//usr/bin/biew + install doc/biew.1 /usr/src/tmp/biew-buildroot//usr/share/man/man1 + cp -a bin_rc/xlt bin_rc/skn bin_rc/biew.hlp /usr/src/tmp/biew-buildroot//usr/share/biew + /usr/lib/rpm/brp-alt Cleaning files in /usr/src/tmp/biew-buildroot (auto) mode of 'usr/share/man/man1/biew.1' changed from 0755 (rwxr-xr-x) to 0644 (rw-r--r--) Verifying and fixing files in /usr/src/tmp/biew-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig) Checking contents of files in /usr/src/tmp/biew-buildroot/ (default) Compressing files in /usr/src/tmp/biew-buildroot (auto) 056-debuginfo.brp: WARNING: You have 1 stripped ELF objects. Please compile with debugging information! 056-debuginfo.brp: WARNING: An excerpt from the list of affected files follows: ./usr/bin/biew Verifying ELF objects in /usr/src/tmp/biew-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal) verify-elf: WARNING: ./usr/bin/biew: uses non-LFS functions: fcntl fopen mmap open pwrite stat Splitting links to aliased files under /{,s}bin in /usr/src/tmp/biew-buildroot Processing files: biew-6.1.0-alt4 Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.38488 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd biew-610 + DOCDIR=/usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + export DOCDIR + rm -rf /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + /bin/mkdir -p /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + cp -prL doc/biew_en.txt doc/biew_ru.txt doc/release.txt doc/unix.txt doc/compile.ru doc/develop.ru doc/file_ini.ru doc/licence.ru doc/compile.en doc/develop.en doc/doxygen doc/file_ini.en doc/licence.en /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + chmod -R go-w /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + chmod -R a+rX /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0 + exit 0 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.44Mi6t find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,python3,shell) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.544Q7u find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,python3,rpmlib,shebang,shell,static,symlinks,systemd-services) Requires: /lib/ld-linux.so.2, libc.so.6(GLIBC_2.0), libc.so.6(GLIBC_2.1), libc.so.6(GLIBC_2.1.3), libc.so.6(GLIBC_2.15), libc.so.6(GLIBC_2.28), libc.so.6(GLIBC_2.3), libc.so.6(GLIBC_2.3.4), libc.so.6(GLIBC_2.33), libc.so.6(GLIBC_2.34), libc.so.6(GLIBC_2.4), libc.so.6(GLIBC_2.7), libgpm.so.1 >= set:jhlIsviN07, rtld(GNU_HASH) Requires(rpmlib): rpmlib(SetVersions) Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.71bi29 Wrote: /usr/src/RPM/RPMS/i586/biew-6.1.0-alt4.i586.rpm (w2.lzdio) 16.38user 2.78system 0:05.70elapsed 336%CPU (0avgtext+0avgdata 41992maxresident)k 0inputs+0outputs (0major+432049minor)pagefaults 0swaps /.out/biew-6.1.0-alt4.i586.rpm: The use of such a license name is ambiguous: GPL 3.29user 2.66system 0:14.67elapsed 40%CPU (0avgtext+0avgdata 127224maxresident)k 32inputs+0outputs (0major+188658minor)pagefaults 0swaps --- biew-6.1.0-alt4.i586.rpm.repo 2022-01-11 19:23:45.000000000 +0000 +++ biew-6.1.0-alt4.i586.rpm.hasher 2024-04-27 08:48:01.024299136 +0000 @@ -65,3 +65,3 @@ Provides: biew = 6.1.0-alt4:sisyphus+293309.100.1.1 -File: /usr/bin/biew 100755 root:root 905bd3f7c713a14cc0889c55c6a2d7af +File: /usr/bin/biew 100755 root:root 35b585ebf34ef5dd955cdfd030fb1c67 File: /usr/share/biew 40755 root:root @@ -113,2 +113,2 @@ File: /usr/share/man/man1/biew.1.xz 100644 root:root 49376292bc962c52cdb346664d8774a0 -RPMIdentity: 41901eca321f7a3fdd38b877c98e2e9c8fa063644f5bf6695dc6a226e7159c72ff860127b430dd8b281e93532b6de478f536da25fe7ddcbcbe8bf8e53919b5b0 +RPMIdentity: 67d6f8afdbdae3e8cee827f0e3fb99e91bcb09fa4189a8c8170f0ca3596b4128cfb0eba7e9c2e2e85335212837d9420205bab63dea579d43261c610116ec5f85