Hi all,
I did a clean clone -
[~/games] - [10044]
└─[$] git clone https://github.com/anrieff/libcpuid.git
Cloning into 'libcpuid'...
remote: Counting objects: 1494, done.
remote: Compressing objects: 100% (24/24), done.
remote: Total 1494 (delta 10), reused 0 (delta 0), pack-reused 1470
Receiving objects: 100% (1494/1494), 433.14 KiB | 122.00 KiB/s, done.
Resolving deltas: 100% (1082/1082), done.
Checking connectivity... done.
Then went into the directory to check if it's synced to the latest git message
[~/games/libcpuid] - [10063]
└─[$] git log | less
commit c31b5c0ae84264082bff6b351b52ab7cc2f025e3
Author: Veselin Georgiev <[email protected]>
Date: Fri Jun 3 04:35:01 2016 +0300
Add up to 8 entries for CPUID leaf 04; push version to 0.3.0.
This is a backwards-incompatible binary change, which increases
sizeof(cpu_raw_data_t). Specifically, the cpu_raw_data_t::intel_fn4
array is increased from 4 to 8 elements, because on recent Hasells
(Crystalwell) there is a Level 4 cache, which should be encoded in
CPUID eax=4 ecx=4. However, we were only storing levels for eax=4
for ecx <= 3. Thus the raw data didn't have the relevant info.
There will be further changes to this, specifically to store
and print the level 4 cache in cpuid_tool.
The above confirmed that I have the latest master.
Then compiled it
[~/games/libcpuid] - [10048]
└─[$] fakeroot debian/rules binary
dh binary --with autotools-dev
dh_testdir
dh_update_autotools_config
dh_autotools-dev_updateconfig
debian/rules override_dh_auto_configure
make[1]: Entering directory '/home/shirish/games/libcpuid'
libtoolize
libtoolize: putting auxiliary files in '.'.
libtoolize: linking file './ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: linking file 'm4/libtool.m4'
libtoolize: linking file 'm4/ltoptions.m4'
libtoolize: linking file 'm4/ltsugar.m4'
libtoolize: linking file 'm4/ltversion.m4'
libtoolize: linking file 'm4/lt~obsolete.m4'
autoreconf --install
configure.ac:35: installing './ar-lib'
configure.ac:34: installing './compile'
configure.ac:37: installing './config.guess'
configure.ac:37: installing './config.sub'
configure.ac:5: installing './install-sh'
configure.ac:5: installing './missing'
cpuid_tool/Makefile.am: installing './depcomp'
dh_auto_configure
./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking
configure: WARNING: unrecognized options: --disable-maintainer-mode
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for ar... ar
checking the archiver (ar) interface... ar
checking for an ANSI C-conforming const... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for stdint.h... (cached) yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libcpuid.pc
config.status: creating libcpuid/Makefile
config.status: creating cpuid_tool/Makefile
config.status: creating tests/Makefile
config.status: creating libcpuid/Doxyfile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: WARNING: unrecognized options: --disable-maintainer-mode
make[1]: Leaving directory '/home/shirish/games/libcpuid'
dh_auto_build
make -j1
make[1]: Entering directory '/home/shirish/games/libcpuid'
make all-recursive
make[2]: Entering directory '/home/shirish/games/libcpuid'
Making all in libcpuid
make[3]: Entering directory '/home/shirish/games/libcpuid/libcpuid'
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o cpuid_main.lo cpuid_main.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c cpuid_main.c -fPIC -DPIC -o .libs/cpuid_main.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c cpuid_main.c -o cpuid_main.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o recog_intel.lo recog_intel.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c recog_intel.c -fPIC -DPIC -o .libs/recog_intel.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c recog_intel.c -o recog_intel.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o recog_amd.lo recog_amd.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c recog_amd.c -fPIC -DPIC -o .libs/recog_amd.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c recog_amd.c -o recog_amd.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o rdtsc.lo rdtsc.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c rdtsc.c -fPIC -DPIC -o .libs/rdtsc.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c rdtsc.c -o rdtsc.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o asm-bits.lo asm-bits.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c asm-bits.c -fPIC -DPIC -o .libs/asm-bits.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c asm-bits.c -o asm-bits.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o libcpuid_util.lo libcpuid_util.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c libcpuid_util.c -fPIC -DPIC -o .libs/libcpuid_util.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c libcpuid_util.c -o libcpuid_util.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o rdmsr.lo rdmsr.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c rdmsr.c -fPIC -DPIC -o .libs/rdmsr.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c rdmsr.c -o rdmsr.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o msrdriver.lo msrdriver.c
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c msrdriver.c -fPIC -DPIC -o .libs/msrdriver.o
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -Wmissing-declarations -Wmissing-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c msrdriver.c -o msrdriver.o >/dev/null 2>&1
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -export-symbols ./libcpuid.sym -no-undefined -version-info 13:0:2 -Wl,-z,relro -o libcpuid.la -rpath /usr/lib/x86_64-linux-gnu cpuid_main.lo recog_intel.lo recog_amd.lo rdtsc.lo asm-bits.lo libcpuid_util.lo rdmsr.lo msrdriver.lo
libtool: link: echo "{ global:" > .libs/libcpuid.ver
libtool: link: cat ./libcpuid.sym | sed -e "s/\(.*\)/\1;/" >> .libs/libcpuid.ver
libtool: link: echo "local: *; };" >> .libs/libcpuid.ver
libtool: link: gcc -shared -fPIC -DPIC .libs/cpuid_main.o .libs/recog_intel.o .libs/recog_amd.o .libs/rdtsc.o .libs/asm-bits.o .libs/libcpuid_util.o .libs/rdmsr.o .libs/msrdriver.o -g -O2 -fstack-protector-strong -Wl,-z -Wl,relro -Wl,-soname -Wl,libcpuid.so.11 -Wl,-version-script -Wl,.libs/libcpuid.ver -o .libs/libcpuid.so.11.2.0
libtool: link: (cd ".libs" && rm -f "libcpuid.so.11" && ln -s "libcpuid.so.11.2.0" "libcpuid.so.11")
libtool: link: (cd ".libs" && rm -f "libcpuid.so" && ln -s "libcpuid.so.11.2.0" "libcpuid.so")
libtool: link: ar cru .libs/libcpuid.a cpuid_main.o recog_intel.o recog_amd.o rdtsc.o asm-bits.o libcpuid_util.o rdmsr.o msrdriver.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libcpuid.a
libtool: link: ( cd ".libs" && rm -f "libcpuid.la" && ln -s "../libcpuid.la" "libcpuid.la" )
make[3]: Leaving directory '/home/shirish/games/libcpuid/libcpuid'
Making all in cpuid_tool
make[3]: Entering directory '/home/shirish/games/libcpuid/cpuid_tool'
gcc -DHAVE_CONFIG_H -I. -I.. -I../libcpuid -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -c -o cpuid_tool.o cpuid_tool.c
/bin/bash ../libtool --tag=CC --mode=link gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -g -Wall -Wl,-z,relro -o cpuid_tool cpuid_tool.o ../libcpuid/libcpuid.la
libtool: link: gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z -Wl,relro -g -Wall -Wl,-z -Wl,relro -o .libs/cpuid_tool cpuid_tool.o ../libcpuid/.libs/libcpuid.so
make[3]: Leaving directory '/home/shirish/games/libcpuid/cpuid_tool'
Making all in tests
make[3]: Entering directory '/home/shirish/games/libcpuid/tests'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/shirish/games/libcpuid/tests'
make[3]: Entering directory '/home/shirish/games/libcpuid'
make[3]: Leaving directory '/home/shirish/games/libcpuid'
make[2]: Leaving directory '/home/shirish/games/libcpuid'
make[1]: Leaving directory '/home/shirish/games/libcpuid'
dh_auto_test
make -j1 test VERBOSE=1
make[1]: Entering directory '/home/shirish/games/libcpuid'
LD_PRELOAD=./libcpuid/.libs/libcpuid.so ./tests/run_tests.py ./cpuid_tool/.libs/cpuid_tool --show-test-fast-warning ./tests
Testing...
Test [./tests/amd/bulldozer/vishera-x4]: OK
Test [./tests/amd/bulldozer/bulldozer-x4]: OK
Test [./tests/amd/k8/turion-64-lancaster]: OK
Test [./tests/amd/k8/sempron-64-sparta]: OK
Test [./tests/amd/k8/opteron-denmark]: OK
Test [./tests/amd/k8/athlon-64-venice]: OK
Test [./tests/amd/k8/mobile-sempron-64-keene]: OK
Test [./tests/amd/k8/mobile-sempron-64-sonora]: OK
Test [./tests/amd/k8/athlon-64-brisbane]: OK
Test [./tests/amd/bobcat/brazos-zacate]: OK
Test [./tests/amd/k7/sempron-barton]: OK
Test [./tests/amd/k7/athlon-thoroughbred]: OK
Test [./tests/amd/k7/duron-applebred]: OK
Test [./tests/amd/k10/athlon-2-champlain-mobile]: OK
Test [./tests/amd/k10/athlon-2-propus]: OK
Test [./tests/amd/k10/athlon-2-kuma]: OK
Test [./tests/amd/k10/sempron-sargas]: OK
Test [./tests/amd/k10/phenom-2-deneb]: OK
Test [./tests/amd/k10/phenom-2-thuban]: OK
Test [./tests/amd/k10/athlon-2-propus-3]: OK
Test [./tests/amd/k10/phenom-agena]: OK
Test [./tests/amd/k10/magny-cours]: OK
Test [./tests/amd/k10/athlon-2-regor]: OK
Test [./tests/amd/k10/phenom-2-heka]: OK
Test [./tests/amd/k10/athlon-2-propus-2]: OK
Test [./tests/intel/p2/pentium-dixon]: OK
Test [./tests/intel/p2/pentium-coppermine]: OK
Test [./tests/intel/p2/petium-m-dothan]: OK
Test [./tests/intel/skylake/skylake-i5]: OK
Test [./tests/intel/atom/atom-diamondville-dualcore]: OK
Test [./tests/intel/atom/atom-diamondville]: OK
Test [./tests/intel/atom/atom-pineview-2]: OK
Test [./tests/intel/atom/atom-pineview]: OK
Test [./tests/intel/sandy/sandy-bridge-i7]: OK
Test [./tests/intel/sandy/xeon-sandy]: OK
Test [./tests/intel/sandy/celeron-sandy]: OK
Test [./tests/intel/sandy/sandy-bridge-e-i7]: OK
Test [./tests/intel/sandy/ivy-bridge-i5]: OK
Test [./tests/intel/core2/penryn-mobile]: OK
Test [./tests/intel/core2/yonah-3]: OK
Test [./tests/intel/core2/conroe-1m]: OK
Test [./tests/intel/core2/merom]: OK
Test [./tests/intel/core2/penryn-3m]: OK
Test [./tests/intel/core2/yonah]: OK
Test [./tests/intel/core2/xeon-wolfdale]: OK
Test [./tests/intel/core2/kentsfield]: OK
Test [./tests/intel/core2/yorkfield-2m]: OK
Test [./tests/intel/core2/conroe]: OK
Test [./tests/intel/core2/xeon-clovertown]: OK
Test [./tests/intel/core2/xeon-harpertown]: OK
Test [./tests/intel/core2/wolfdale]: OK
Test [./tests/intel/core2/yorkfield]: OK
Test [./tests/intel/core2/yonah-2]: OK
Test [./tests/intel/core2/allendale]: OK
Test [./tests/intel/core2/merom-2m]: OK
Test [./tests/intel/core2/conroe-l-celeron]: OK
Test [./tests/intel/core2/celeron-wolfdale]: OK
Test [./tests/intel/core2/conroe-l]: OK
Test [./tests/intel/netburst/xeon-prestonia]: OK
Test [./tests/intel/netburst/mobile-p4-northwood]: OK
Test [./tests/intel/netburst/celeron-prescott]: OK
Test [./tests/intel/netburst/celeron-northwood.test]: OK
Test [./tests/intel/netburst/p4-prescott-ht]: OK
Test [./tests/intel/netburst/p4-northwood]: OK
Test [./tests/intel/netburst/celeron-willamette]: OK
Test [./tests/intel/nehalem/lynnfield-i7]: OK
Test [./tests/intel/nehalem/bloomfield]: OK
Test [./tests/intel/nehalem/arrandale-i7]: OK
Test [./tests/intel/nehalem/xeon-gulftown]: OK
Test [./tests/intel/nehalem/arrandale-mobile]: OK
Test [./tests/intel/nehalem/xeon-bloomfield]: OK
Test [./tests/intel/nehalem/xeon-gainestown]: OK
Test [./tests/intel/nehalem/gulftown-i7]: OK
Test [./tests/intel/nehalem/arrandale-i5]: OK
Test [./tests/intel/haswell/haswell-i7]: OK
Test [./tests/intel/haswell/haswell-i3]: OK
Test [./tests/intel/haswell/haswell-i5]: OK
All successfull!
make[1]: Leaving directory '/home/shirish/games/libcpuid'
dh_testroot
dh_prep
dh_auto_install
make -j1 install DESTDIR=/home/shirish/games/libcpuid/debian/tmp AM_UPDATE_INFO_DIR=no
make[1]: Entering directory '/home/shirish/games/libcpuid'
Making install in libcpuid
make[2]: Entering directory '/home/shirish/games/libcpuid/libcpuid'
make[3]: Entering directory '/home/shirish/games/libcpuid/libcpuid'
/bin/mkdir -p '/home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu'
/bin/bash ../libtool --mode=install /usr/bin/install -c libcpuid.la '/home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu'
libtool: install: /usr/bin/install -c .libs/libcpuid.so.11.2.0 /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/libcpuid.so.11.2.0
libtool: install: (cd /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu && { ln -s -f libcpuid.so.11.2.0 libcpuid.so.11 || { rm -f libcpuid.so.11 && ln -s libcpuid.so.11.2.0 libcpuid.so.11; }; })
libtool: install: (cd /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu && { ln -s -f libcpuid.so.11.2.0 libcpuid.so || { rm -f libcpuid.so && ln -s libcpuid.so.11.2.0 libcpuid.so; }; })
libtool: install: /usr/bin/install -c .libs/libcpuid.lai /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/libcpuid.la
libtool: install: /usr/bin/install -c .libs/libcpuid.a /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/libcpuid.a
libtool: install: chmod 644 /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/libcpuid.a
libtool: install: ranlib /home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/libcpuid.a
libtool: warning: remember to run 'libtool --finish /usr/lib/x86_64-linux-gnu'
/bin/mkdir -p '/home/shirish/games/libcpuid/debian/tmp/usr/include/libcpuid'
/usr/bin/install -c -m 644 libcpuid.h libcpuid_constants.h libcpuid_types.h '/home/shirish/games/libcpuid/debian/tmp/usr/include/libcpuid'
make[3]: Leaving directory '/home/shirish/games/libcpuid/libcpuid'
make[2]: Leaving directory '/home/shirish/games/libcpuid/libcpuid'
Making install in cpuid_tool
make[2]: Entering directory '/home/shirish/games/libcpuid/cpuid_tool'
make[3]: Entering directory '/home/shirish/games/libcpuid/cpuid_tool'
/bin/mkdir -p '/home/shirish/games/libcpuid/debian/tmp/usr/bin'
/bin/bash ../libtool --mode=install /usr/bin/install -c cpuid_tool '/home/shirish/games/libcpuid/debian/tmp/usr/bin'
libtool: install: /usr/bin/install -c .libs/cpuid_tool /home/shirish/games/libcpuid/debian/tmp/usr/bin/cpuid_tool
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/shirish/games/libcpuid/cpuid_tool'
make[2]: Leaving directory '/home/shirish/games/libcpuid/cpuid_tool'
Making install in tests
make[2]: Entering directory '/home/shirish/games/libcpuid/tests'
make[3]: Entering directory '/home/shirish/games/libcpuid/tests'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/shirish/games/libcpuid/tests'
make[2]: Leaving directory '/home/shirish/games/libcpuid/tests'
make[2]: Entering directory '/home/shirish/games/libcpuid'
make[3]: Entering directory '/home/shirish/games/libcpuid'
make[3]: Nothing to be done for 'install-exec-am'.
/bin/mkdir -p '/home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/pkgconfig'
/usr/bin/install -c -m 644 libcpuid.pc '/home/shirish/games/libcpuid/debian/tmp/usr/lib/x86_64-linux-gnu/pkgconfig'
make[3]: Leaving directory '/home/shirish/games/libcpuid'
make[2]: Leaving directory '/home/shirish/games/libcpuid'
make[1]: Leaving directory '/home/shirish/games/libcpuid'
dh_install
dh_installdocs
dh_installchangelogs
dh_perl
dh_link
dh_strip_nondeterminism
dh_compress
dh_fixperms
dh_strip
dh_makeshlibs
dh_shlibdeps
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
dpkg-deb: building package 'libcpuid11-dbgsym' in '../libcpuid11-dbgsym_0.21_amd64.deb'.
dpkg-deb: building package 'libcpuid11' in '../libcpuid11_0.21_amd64.deb'.
dpkg-deb: building package 'libcpuid11-dev' in '../libcpuid11-dev_0.21_amd64.deb'.
Here itself I felt something was wrong as the compilation resulted in libcpuid11_0.21_amd64.deb, had thought that the version numbering would change - comments please.
Then installed it -
[$] sudo dpkg -i libcpuid11_0.21_amd64.deb
[sudo] password for shirish:
D000001: ensure_diversions: new, (re)loading
D000001: ensure_statoverrides: new, (re)loading
(Reading database ... 923407 files and directories currently installed.)
Preparing to unpack libcpuid11_0.21_amd64.deb ...
D000001: process_archive oldversionstatus=installed
Unpacking libcpuid11 (0.21) over (0.21) ...
D000001: ensure_diversions: same, skipping
D000001: process_archive updating info directory
D000001: generating infodb hashfile
D000001: process queue pkg libcpuid11:amd64 queue.len 0 progress 1, try 1
Setting up libcpuid11 (0.21) ...
D000001: deferred_configure updating conffiles
Processing triggers for libc-bin (2.22-9) ...
D000001: ensure_diversions: same, skipping
D000001: cmpversions a='0:2016.03.30' b='0:2016.05.24' r=-2
D000001: cmpversions a='0:1.18.7' b='0:1.16' r=2
D000001: cmpversions a='0:1.18.7' b='0:1.16' r=2
D000001: cmpversions a='0:1.18.7' b='0:1.16' r=2
I have put aptitude in verbose mode hence you are seeing the above messages.
I then went to /usr/share/doc/libcpuid11/ to see if changelog.gz had the new entries -
$[/usr/share/doc/libcpuid11] - [10069]
└─[$] zcat changelog.gz | less
libcpuid (0.21) unstable; urgency=low
* Initial release add debian directory for libcpuid.
-- Zhang, Guodong <gd[email protected]> Fri, 10 Apr 2015 14:59:27 +0800
(END)
And guess what, seems that the debian-directory hasn't been updated since then :(