Add configuration for building binary wheels
This adds a script to build cmph locally, and hooks into the ffibuilder to use the local copy of cmph if it's available.
This also configures cibuildwheel to properly generate manylinux wheels.
Handles #1 (closed)
Merge request reports
Activity
assigned to @olasd
added 5 commits
-
a2576d09...22ec91f3 - 4 commits from branch
swh/devel:master
- 951bae4f - Add configuration for building binary wheels
-
a2576d09...22ec91f3 - 4 commits from branch
Jenkins job DOPH/gitlab-builds #11 succeeded .
See Console Output and Coverage Report for more details.Transcript of a run of cibuildwheel inside the swh-jenkins/tox container:
$ docker run -it -v /usr/bin/docker:/usr/bin/docker -v /run/docker.sock:/run/docker.sock swh-jenkins/tox /bin/bash jenkins@8ad3066b2958:~$ git clone https://gitlab.softwareheritage.org/olasd/swh-perfecthash -b feature/cibuildwheel Cloning into 'swh-perfecthash'... warning: redirecting to https://gitlab.softwareheritage.org/olasd/swh-perfecthash.git/ remote: Enumerating objects: 260, done. remote: Counting objects: 100% (21/21), done. remote: Compressing objects: 100% (21/21), done. remote: Total 260 (delta 5), reused 5 (delta 0), pack-reused 239 Receiving objects: 100% (260/260), 101.33 KiB | 14.48 MiB/s, done. Resolving deltas: 100% (112/112), done. jenkins@8ad3066b2958:~$ cd swh-perfecthash/ jenkins@8ad3066b2958:~/swh-perfecthash$ pip install cibuildwheel Collecting cibuildwheel Downloading cibuildwheel-2.13.1-py3-none-any.whl (71 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 71.7/71.7 KB 2.8 MB/s eta 0:00:00 Collecting filelock Using cached filelock-3.12.2-py3-none-any.whl (10 kB) Collecting typing-extensions>=4.1.0 Downloading typing_extensions-4.6.3-py3-none-any.whl (31 kB) Collecting packaging>=20.9 Using cached packaging-23.1-py3-none-any.whl (48 kB) Collecting bracex Downloading bracex-2.3.post1-py3-none-any.whl (12 kB) Collecting platformdirs Using cached platformdirs-3.8.0-py3-none-any.whl (16 kB) Collecting bashlex!=0.13 Downloading bashlex-0.18-py2.py3-none-any.whl (69 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 69.5/69.5 KB 14.8 MB/s eta 0:00:00 Collecting tomli Downloading tomli-2.0.1-py3-none-any.whl (12 kB) Collecting certifi Using cached certifi-2023.5.7-py3-none-any.whl (156 kB) Installing collected packages: typing-extensions, tomli, packaging, filelock, certifi, bracex, bashlex, platformdirs, cibuildwheel Successfully installed bashlex-0.18 bracex-2.3.post1 certifi-2023.5.7 cibuildwheel-2.13.1 filelock-3.12.2 packaging-23.1 platformdirs-3.8.0 tomli-2.0.1 typing-extensions-4.6.3 WARNING: You are using pip version 22.0.4; however, version 23.1.2 is available. You should consider upgrading via the '/home/jenkins/.pyenv/versions/3.7.16/bin/python3.7 -m pip install --upgrade pip' command. jenkins@8ad3066b2958:~/swh-perfecthash$ cibuildwheel --platform=python usage: cibuildwheel [-h] [--platform {auto,linux,macos,windows}] [--archs ARCHS] [--only ONLY] [--output-dir OUTPUT_DIR] [--config-file CONFIG_FILE] [--print-build-identifiers] [--allow-empty] [--prerelease-pythons] [PACKAGE] cibuildwheel: error: argument --platform: invalid choice: 'python' (choose from 'auto', 'linux', 'macos', 'windows') jenkins@8ad3066b2958:~/swh-perfecthash$ cibuildwheel --platform=linus usage: cibuildwheel [-h] [--platform {auto,linux,macos,windows}] [--archs ARCHS] [--only ONLY] [--output-dir OUTPUT_DIR] [--config-file CONFIG_FILE] [--print-build-identifiers] [--allow-empty] [--prerelease-pythons] [PACKAGE] cibuildwheel: error: argument --platform: invalid choice: 'linus' (choose from 'auto', 'linux', 'macos', 'windows') jenkins@8ad3066b2958:~/swh-perfecthash$ cibuildwheel --platform=linux_ _ _ _ _ _ _
__|_| | _ |_| |_| | _ | | ___ ___| | | _| | . | | | | | . | | | | | -_| -_| | |___|_|___|___|_|_|___|_____|_|_|___|___|_|
cibuildwheel version 2.13.1
Build options: platform: linux architectures: i686, x86_64 build_selector: build_config: * skip_config: requires_python: >=3.7 prerelease_pythons: False container_engine: docker output_dir: /home/jenkins/swh-perfecthash/wheelhouse package_dir: /home/jenkins/swh-perfecthash test_selector: skip_config: before_all: *: yum install -y wget && ./build_cmph.sh cp37-musllinux_x86_64, cp38-musllinux_x86_64, cp39-musllinux_x86_64, cp310-musllinux_x86_64, cp311-musllinux_x86_64, cp37-musllinux_i686, cp38-musllinux_i686, cp39-musllinux_i686, cp310-musllinux_i686, cp311-musllinux_i686: apk add wget && ./build_cmph.sh before_build: before_test: build_frontend: default build_verbosity: 0 config_settings: dependency_constraints: pinned environment: LD_LIBRARY_PATH="/project/cmph/lib" manylinux_images: x86_64: quay.io/pypa/manylinux2014_x86_64:2023-06-08-775c518 i686: quay.io/pypa/manylinux2014_i686:2023-06-08-775c518 pypy_x86_64: quay.io/pypa/manylinux2014_x86_64:2023-06-08-775c518 aarch64: quay.io/pypa/manylinux2014_aarch64:2023-06-08-775c518 ppc64le: quay.io/pypa/manylinux2014_ppc64le:2023-06-08-775c518 s390x: quay.io/pypa/manylinux2014_s390x:2023-06-08-775c518 pypy_aarch64: quay.io/pypa/manylinux2014_aarch64:2023-06-08-775c518 pypy_i686: quay.io/pypa/manylinux2014_i686:2023-06-08-775c518 musllinux_images: x86_64: quay.io/pypa/musllinux_1_1_x86_64:2023-06-08-775c518 i686: quay.io/pypa/musllinux_1_1_i686:2023-06-08-775c518 aarch64: quay.io/pypa/musllinux_1_1_aarch64:2023-06-08-775c518 ppc64le: quay.io/pypa/musllinux_1_1_ppc64le:2023-06-08-775c518 s390x: quay.io/pypa/musllinux_1_1_s390x:2023-06-08-775c518 repair_command: auditwheel repair -w {dest_dir} {wheel} test_command: test_extras: test_requires:
Cache folder: /home/jenkins/.cache/cibuildwheel
Here we go!
Starting container image quay.io/pypa/manylinux2014_x86_64:2023-06-08-775c518...
info: This container will host the build for cp37-manylinux_x86_64, cp38-manylinux_x86_64, cp39-manylinux_x86_64, cp310-manylinux_x86_64, cp311-manylinux_x86_64, pp37-manylinux_x86_64, pp38-manylinux_x86_64, pp39-manylinux_x86_64... f85f38a5afde5c9eb8c9f688c22597eb4f017e5b971ab4959cef3143bba80af2 + /bin/true + mkdir -p /project + test -x /opt/python/cp37-cp37m/bin/python + test -x /opt/python/cp38-cp38/bin/python + test -x /opt/python/cp39-cp39/bin/python + test -x /opt/python/cp310-cp310/bin/python + test -x /opt/python/cp311-cp311/bin/python + test -x /opt/python/pp37-pypy37_pp73/bin/python + test -x /opt/python/pp38-pypy38_pp73/bin/python + test -x /opt/python/pp39-pypy39_pp73/bin/python
✓ 0.36s
Copying project into container...
+ mkdir -p /project ✓ 0.10s
Running before_all...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + sh -c 'yum install -y wget && ./build_cmph.sh'
Loaded plugins: fastestmirror, ovl Determining fastest mirrors
- base: ftp.pasteur.fr
- centos-sclo-rh: ftp.pasteur.fr
- epel: mirror.23m.com
- extras: mirrors.ircam.fr
- updates: ftp.pasteur.fr https://epel.gb.ssimn.org/7/x86_64/repodata/ae1fa726a5fe0d5837aa482e4aea1d736d876c15c2cbcc4ee42fd26c59321c55-primary.sqlite.bz2: [Errno 14] HTTPS Error 403 - Forbidden Trying other mirror. To address this issue please refer to the below wiki article
https://wiki.centos.org/yum-errors
If above article doesn't help to resolve this issue please use https://bugs.centos.org/.
Resolving Dependencies --> Running transaction check ---> Package wget.x86_64 0:1.14-18.el7_6.1 will be installed --> Finished Dependency Resolution
Dependencies Resolved
================================================================================ Package Arch Version Repository Size
Installing: wget x86_64 1.14-18.el7_6.1 base 547 k
Transaction Summary
Install 1 Package
Total download size: 547 k Installed size: 2.0 M Downloading packages: Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : wget-1.14-18.el7_6.1.x86_64 1/1 install-info: No such file or directory for /usr/share/info/wget.info.gz Verifying : wget-1.14-18.el7_6.1.x86_64 1/1
Installed: wget.x86_64 0:1.14-18.el7_6.1
Complete! --2023-06-23 15:28:15-- https://deac-ams.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)... 185.34.27.55 Connecting to deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)|185.34.27.55|:443... connected. HTTP request sent, awaiting response... 302 Moved Temporarily Location: https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net [following] --2023-06-23 15:28:15-- https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 204.68.111.105 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|204.68.111.105|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://altushost-swe.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz [following] --2023-06-23 15:28:16-- https://altushost-swe.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving altushost-swe.dl.sourceforge.net (altushost-swe.dl.sourceforge.net)... 79.142.76.130 Connecting to altushost-swe.dl.sourceforge.net (altushost-swe.dl.sourceforge.net)|79.142.76.130|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 532528 (520K) [application/x-gzip] Saving to: ‘cmph.tar.gz’
0K .......... .......... .......... .......... .......... 9% 1.07M 0s 50K .......... .......... .......... .......... .......... 19% 1.38M 0s
100K .......... .......... .......... .......... .......... 28% 16.1M 0s 150K .......... .......... .......... .......... .......... 38% 9.04M 0s 200K .......... .......... .......... .......... .......... 48% 1.71M 0s 250K .......... .......... .......... .......... .......... 57% 3.10M 0s 300K .......... .......... .......... .......... .......... 67% 106M 0s 350K .......... .......... .......... .......... .......... 76% 1.96M 0s 400K .......... .......... .......... .......... .......... 86% 4.78M 0s 450K .......... .......... .......... .......... .......... 96% 17.4M 0s 500K .......... .......... 100% 148M=0.2s
2023-06-23 15:28:16 (2.95 MB/s) - ‘cmph.tar.gz’ saved [532528/532528]
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gawk... (cached) gawk 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 whether make supports the include directive... yes (GNU style) checking dependency style of gcc... gcc3 checking whether ln -s works... 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... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld checking if the linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /opt/rh/devtoolset-10/root/usr/bin/nm -B checking the name lister (/opt/rh/devtoolset-10/root/usr/bin/nm -B) interface... BSD nm 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 /opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/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 ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /opt/rh/devtoolset-10/root/usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... no checking if : 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... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/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 getconf... getconf checking for CFLAGS value to request large file support... checking for LDFLAGS value to request large file support... checking for LIBS value to request large file support... checking for _FILE_OFFSET_BITS... no checking for _LARGEFILE_SOURCE... no checking for _LARGE_FILES... no checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for cos in -lm... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld -m elf_x86_64 checking if the linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/x86_64-redhat-linux/10/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking if there is spoon... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating cxxmph/Makefile config.status: creating tests/Makefile config.status: creating examples/Makefile config.status: creating man/Makefile config.status: creating cmph.pc config.status: creating cxxmph.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory
/project/cmph/cmph-2.0.2' Making all in src make[2]: Entering directory
/project/cmph/cmph-2.0.2/src' gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT wingetopt.o -MD -MP -MF .deps/wingetopt.Tpo -c -o wingetopt.o wingetopt.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c -o jenkins_hash.lo jenkins_hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c -o vstack.lo vstack.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c -o vqueue.lo vqueue.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c -o cmph.lo cmph.c mv -f .deps/wingetopt.Tpo .deps/wingetopt.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c -o cmph_structs.lo cmph_structs.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -fPIC -DPIC -o .libs/vstack.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -fPIC -DPIC -o .libs/cmph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -fPIC -DPIC -o .libs/hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -fPIC -DPIC -o .libs/jenkins_hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -fPIC -DPIC -o .libs/graph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -fPIC -DPIC -o .libs/cmph_structs.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -fPIC -DPIC -o .libs/vqueue.o cmph_structs.c: In function ‘__cmph_dump’: cmph_structs.c:27:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 27 | register size_t nbytes; | ^~~~~~ cmph_structs.c: In function ‘__cmph_load’: cmph_structs.c:38:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 38 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -o vstack.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -o cmph_structs.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -o vqueue.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -o jenkins_hash.o >/dev/null 2>&1 mv -f .deps/main.Tpo .deps/main.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c -o chm.lo chm.c mv -f .deps/vstack.Tpo .deps/vstack.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c -o bmz.lo bmz.c mv -f .deps/vqueue.Tpo .deps/vqueue.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c -o bmz8.lo bmz8.c mv -f .deps/cmph_structs.Tpo .deps/cmph_structs.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c -o bdz.lo bdz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -fPIC -DPIC -o .libs/chm.o mv -f .deps/hash.Tpo .deps/hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c -o bdz_ph.lo bdz_ph.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -fPIC -DPIC -o .libs/bmz8.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -fPIC -DPIC -o .libs/bdz.o chm.c: In function ‘chm_dump’: chm.c:207:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 207 | register size_t nbytes; | ^~~~~~ chm.c: In function ‘chm_load’: chm.c:243:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 243 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -fPIC -DPIC -o .libs/bmz.o mv -f .deps/jenkins_hash.Tpo .deps/jenkins_hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c -o brz.lo brz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -fPIC -DPIC -o .libs/bdz_ph.o bmz8.c: In function ‘bmz8_dump’: bmz8.c:470:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 470 | register size_t nbytes; | ^~~~~~ bmz8.c: In function ‘bmz8_load’: bmz8.c:505:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 505 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -o cmph.o >/dev/null 2>&1 bdz.c: In function ‘bdz_dump’: bdz.c:502:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 502 | register size_t nbytes; | ^~~~~~ bdz.c: In function ‘bdz_load’: bdz.c:537:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 537 | register size_t nbytes; | ^~~~~~ bmz.c: In function ‘bmz_dump’: bmz.c:462:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 462 | register size_t nbytes; | ^~~~~~ bmz.c: In function ‘bmz_load’: bmz.c:499:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 499 | register size_t nbytes; | ^~~~~~ bdz_ph.c: In function ‘bdz_ph_dump’: bdz_ph.c:457:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 457 | register size_t nbytes; | ^~~~~~ bdz_ph.c: In function ‘bdz_ph_load’: bdz_ph.c:487:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 487 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -fPIC -DPIC -o .libs/brz.o brz.c: In function ‘brz_gen_mphf’: brz.c:249:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 249 | register size_t nbytes; | ^~~~~~ brz.c: In function ‘brz_dump’: libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -o chm.o >/dev/null 2>&1 brz.c:580:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 580 | register size_t nbytes; | ^~~~~~ brz.c: In function ‘brz_load’: brz.c:599:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 599 | register size_t nbytes; | ^~~~~~ mv -f .deps/graph.Tpo .deps/graph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c -o fch.lo fch.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -fPIC -DPIC -o .libs/fch.o mv -f .deps/cmph.Tpo .deps/cmph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c -o fch_buckets.lo fch_buckets.c fch.c: In function ‘fch_dump’: fch.c:319:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 319 | register size_t nbytes; | ^~~~~~ fch.c: In function ‘fch_load’: fch.c:355:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 355 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -o bdz_ph.o >/dev/null 2>&1 mv -f .deps/chm.Tpo .deps/chm.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c -o chd.lo chd.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -o bdz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -fPIC -DPIC -o .libs/fch_buckets.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -o bmz8.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -o bmz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -fPIC -DPIC -o .libs/chd.o chd.c: In function ‘chd_load’: chd.c:178:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 178 | register size_t nbytes; | ^~~~~~ chd.c: In function ‘chd_dump’: chd.c:197:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 197 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -o fch_buckets.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -o fch.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -o chd.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -o brz.o >/dev/null 2>&1 mv -f .deps/fch_buckets.Tpo .deps/fch_buckets.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c -o chd_ph.lo chd_ph.c mv -f .deps/bdz_ph.Tpo .deps/bdz_ph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c -o miller_rabin.lo miller_rabin.c mv -f .deps/chd.Tpo .deps/chd.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c -o buffer_manager.lo buffer_manager.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -fPIC -DPIC -o .libs/chd_ph.o mv -f .deps/bdz.Tpo .deps/bdz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c -o buffer_entry.lo buffer_entry.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -fPIC -DPIC -o .libs/miller_rabin.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -fPIC -DPIC -o .libs/buffer_manager.o mv -f .deps/bmz.Tpo .deps/bmz.Plo mv -f .deps/bmz8.Tpo .deps/bmz8.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c -o select.lo select.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c -o compressed_seq.lo compressed_seq.c chd_ph.c: In function ‘chd_ph_load’: chd_ph.c:844:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 844 | register size_t nbytes; | ^~~~~~ chd_ph.c: In function ‘chd_ph_dump’: chd_ph.c:875:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 875 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -fPIC -DPIC -o .libs/buffer_entry.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -o miller_rabin.o >/dev/null 2>&1 mv -f .deps/fch.Tpo .deps/fch.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -o buffer_manager.o >/dev/null 2>&1 /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c -o compressed_rank.lo compressed_rank.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -fPIC -DPIC -o .libs/compressed_seq.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -fPIC -DPIC -o .libs/select.o mv -f .deps/miller_rabin.Tpo .deps/miller_rabin.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c -o linear_string_map.lo linear_string_map.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -fPIC -DPIC -o .libs/compressed_rank.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -o buffer_entry.o >/dev/null 2>&1 mv -f .deps/buffer_manager.Tpo .deps/buffer_manager.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c -o cmph_benchmark.lo cmph_benchmark.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -fPIC -DPIC -o .libs/linear_string_map.o mv -f .deps/buffer_entry.Tpo .deps/buffer_entry.Plo gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bm_numbers.o -MD -MP -MF .deps/bm_numbers.Tpo -c -o bm_numbers.o bm_numbers.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -fPIC -DPIC -o .libs/cmph_benchmark.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -o select.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -o linear_string_map.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -o compressed_seq.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -o compressed_rank.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -o cmph_benchmark.o >/dev/null 2>&1 mv -f .deps/bm_numbers.Tpo .deps/bm_numbers.Po mv -f .deps/linear_string_map.Tpo .deps/linear_string_map.Plo mv -f .deps/brz.Tpo .deps/brz.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -o chd_ph.o >/dev/null 2>&1 mv -f .deps/select.Tpo .deps/select.Plo mv -f .deps/cmph_benchmark.Tpo .deps/cmph_benchmark.Plo mv -f .deps/compressed_rank.Tpo .deps/compressed_rank.Plo mv -f .deps/compressed_seq.Tpo .deps/compressed_seq.Plo mv -f .deps/chd_ph.Tpo .deps/chd_ph.Plo /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -version-info 0:0:0 -lm -o libcmph.la -rpath /project/cmph/lib hash.lo jenkins_hash.lo vstack.lo vqueue.lo graph.lo cmph.lo cmph_structs.lo chm.lo bmz.lo bmz8.lo bdz.lo bdz_ph.lo brz.lo fch.lo fch_buckets.lo chd.lo chd_ph.lo miller_rabin.lo buffer_manager.lo buffer_entry.lo select.lo compressed_seq.lo compressed_rank.lo linear_string_map.lo cmph_benchmark.lo
libtool: link: gcc -shared -fPIC -DPIC .libs/hash.o .libs/jenkins_hash.o .libs/vstack.o .libs/vqueue.o .libs/graph.o .libs/cmph.o .libs/cmph_structs.o .libs/chm.o .libs/bmz.o .libs/bmz8.o .libs/bdz.o .libs/bdz_ph.o .libs/brz.o .libs/fch.o .libs/fch_buckets.o .libs/chd.o .libs/chd_ph.o .libs/miller_rabin.o .libs/buffer_manager.o .libs/buffer_entry.o .libs/select.o .libs/compressed_seq.o .libs/compressed_rank.o .libs/linear_string_map.o .libs/cmph_benchmark.o -lm -g -O2 -Wl,-soname -Wl,libcmph.so.0 -o .libs/libcmph.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libcmph.so.0" && ln -s "libcmph.so.0.0.0" "libcmph.so.0") libtool: link: (cd ".libs" && rm -f "libcmph.so" && ln -s "libcmph.so.0.0.0" "libcmph.so") libtool: link: ar cru .libs/libcmph.a hash.o jenkins_hash.o vstack.o vqueue.o graph.o cmph.o cmph_structs.o chm.o bmz.o bmz8.o bdz.o bdz_ph.o brz.o fch.o fch_buckets.o chd.o chd_ph.o miller_rabin.o buffer_manager.o buffer_entry.o select.o compressed_seq.o compressed_rank.o linear_string_map.o cmph_benchmark.o libtool: link: ranlib .libs/libcmph.a libtool: link: ( cd ".libs" && rm -f "libcmph.la" && ln -s "../libcmph.la" "libcmph.la" ) /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o cmph main.o wingetopt.o libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o bm_numbers bm_numbers.o libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/bm_numbers bm_numbers.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/cmph main.o wingetopt.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/src' Making all in tests make[2]: Entering directory
/project/cmph/cmph-2.0.2/tests' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT packed_mphf_tests.o -MD -MP -MF .deps/packed_mphf_tests.Tpo -c -o packed_mphf_tests.o packed_mphf_tests.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT mphf_tests.o -MD -MP -MF .deps/mphf_tests.Tpo -c -o mphf_tests.o mphf_tests.c mv -f .deps/mphf_tests.Tpo .deps/mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o mphf_tests mphf_tests.o ../src/libcmph.la mv -f .deps/packed_mphf_tests.Tpo .deps/packed_mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o packed_mphf_tests packed_mphf_tests.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/mphf_tests mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/packed_mphf_tests packed_mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/tests' Making all in examples make[2]: Entering directory
/project/cmph/cmph-2.0.2/examples' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT vector_adapter_ex1.o -MD -MP -MF .deps/vector_adapter_ex1.Tpo -c -o vector_adapter_ex1.o vector_adapter_ex1.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT file_adapter_ex2.o -MD -MP -MF .deps/file_adapter_ex2.Tpo -c -o file_adapter_ex2.o file_adapter_ex2.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT struct_vector_adapter_ex3.o -MD -MP -MF .deps/struct_vector_adapter_ex3.Tpo -c -o struct_vector_adapter_ex3.o struct_vector_adapter_ex3.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT small_set_ex4.o -MD -MP -MF .deps/small_set_ex4.Tpo -c -o small_set_ex4.o small_set_ex4.c mv -f .deps/file_adapter_ex2.Tpo .deps/file_adapter_ex2.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o file_adapter_ex2 file_adapter_ex2.o ../src/libcmph.la mv -f .deps/vector_adapter_ex1.Tpo .deps/vector_adapter_ex1.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o vector_adapter_ex1 vector_adapter_ex1.o ../src/libcmph.la mv -f .deps/struct_vector_adapter_ex3.Tpo .deps/struct_vector_adapter_ex3.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/libcmph.la mv -f .deps/small_set_ex4.Tpo .deps/small_set_ex4.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o small_set_ex4 small_set_ex4.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/file_adapter_ex2 file_adapter_ex2.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/vector_adapter_ex1 vector_adapter_ex1.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/small_set_ex4 small_set_ex4.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/examples' Making all in man make[2]: Entering directory
/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done forall'. make[2]: Leaving directory
/project/cmph/cmph-2.0.2/man' make[2]: Entering directory/project/cmph/cmph-2.0.2' make[2]: Leaving directory
/project/cmph/cmph-2.0.2' make[1]: Leaving directory/project/cmph/cmph-2.0.2' Making install in src make[1]: Entering directory
/project/cmph/cmph-2.0.2/src' make[2]: Entering directory `/project/cmph/cmph-2.0.2/src' /usr/bin/mkdir -p '/project/cmph/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libcmph.la '/project/cmph/lib' libtool: install: /usr/bin/install -c .libs/libcmph.so.0.0.0 /project/cmph/lib/libcmph.so.0.0.0 libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so.0 || { rm -f libcmph.so.0 && ln -s libcmph.so.0.0.0 libcmph.so.0; }; }) libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so || { rm -f libcmph.so && ln -s libcmph.so.0.0.0 libcmph.so; }; }) libtool: install: /usr/bin/install -c .libs/libcmph.lai /project/cmph/lib/libcmph.la libtool: install: /usr/bin/install -c .libs/libcmph.a /project/cmph/lib/libcmph.a libtool: install: chmod 644 /project/cmph/lib/libcmph.a libtool: install: ranlib /project/cmph/lib/libcmph.a libtool: finish: PATH="/opt/python/cp38-cp38/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /project/cmph/libLibraries have been installed in: /project/cmph/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages.
/usr/bin/mkdir -p '/project/cmph/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c cmph '/project/cmph/bin' libtool: install: /usr/bin/install -c .libs/cmph /project/cmph/bin/cmph /usr/bin/mkdir -p '/project/cmph/include' /usr/bin/install -c -m 644 cmph.h cmph_types.h cmph_time.h chd_ph.h '/project/cmph/include' make[2]: Leaving directory
/project/cmph/cmph-2.0.2/src' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/src' Making install in tests make[1]: Entering directory/project/cmph/cmph-2.0.2/tests' make[2]: Entering directory
/project/cmph/cmph-2.0.2/tests' make[2]: Nothing to be done forinstall-exec-am'. make[2]: Nothing to be done for
install-data-am'. make[2]: Leaving directory/project/cmph/cmph-2.0.2/tests' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/tests' Making install in examples make[1]: Entering directory/project/cmph/cmph-2.0.2/examples' make[2]: Entering directory
/project/cmph/cmph-2.0.2/examples' make[2]: Nothing to be done forinstall-exec-am'. make[2]: Nothing to be done for
install-data-am'. make[2]: Leaving directory/project/cmph/cmph-2.0.2/examples' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/examples' Making install in man make[1]: Entering directory/project/cmph/cmph-2.0.2/man' make[2]: Entering directory
/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done forinstall-exec-am'. /usr/bin/mkdir -p '/project/cmph/share/man/man1' /usr/bin/install -c -m 644 cmph.1 '/project/cmph/share/man/man1' make[2]: Leaving directory
/project/cmph/cmph-2.0.2/man' make[1]: Leaving directory/project/cmph/cmph-2.0.2/man' make[1]: Entering directory
/project/cmph/cmph-2.0.2' make[2]: Entering directory/project/cmph/cmph-2.0.2' make[2]: Nothing to be done for
install-exec-am'. /usr/bin/mkdir -p '/project/cmph/lib/pkgconfig' /usr/bin/install -c -m 644 cmph.pc '/project/cmph/lib/pkgconfig' make[2]: Leaving directory/project/cmph/cmph-2.0.2' make[1]: Leaving directory
/project/cmph/cmph-2.0.2'✓ 21.27s
Building cp37-manylinux_x86_64 wheel CPython 3.7 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_x86_64.whl size=48723 sha256=a8893a904c1025e032dce22cae4e79b4344b981b45c9a566cfc8692d7e3c0136 Stored in directory: /tmp/pip-ephem-wheel-cache-7nrd566t/wheels/84/ce/ef/3768e7d143f298e3f79dda4c505f7ffa005f429720ee7533a3 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.19s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp37-cp37m-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp37-cp37m-manylinux_2_17_x86_64, cp37-cp37m-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.56s
✓ cp37-manylinux_x86_64 finished in 6.92s
Building cp38-manylinux_x86_64 wheel CPython 3.8 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_x86_64.whl size=48801 sha256=928a9f788d243064133d3af0a4787ec8e45c11bd2f01fb1596796533afa11c99 Stored in directory: /tmp/pip-ephem-wheel-cache-l54lh8vg/wheels/d4/3a/c0/4dc152b1840724d5b992a8268bb4ef33fdbe42ffe1429b845c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 4.87s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp38-cp38-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp38-cp38-manylinux_2_17_x86_64, cp38-cp38-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.20s
✓ cp38-manylinux_x86_64 finished in 5.20s
Building cp39-manylinux_x86_64 wheel CPython 3.9 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_x86_64.whl size=48661 sha256=2aed1b54ae66f2705ddbe66f66745aea6cf67eee0e1d7ccad2b3841d18ecf7fb Stored in directory: /tmp/pip-ephem-wheel-cache-d2qq97lx/wheels/b1/d1/e9/62441f1a701c6dcdb0d9ccfd73a0bfbac93e8cf297e5312e15 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.68s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp39-cp39-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp39-cp39-manylinux_2_17_x86_64, cp39-cp39-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.18s
✓ cp39-manylinux_x86_64 finished in 5.98s
Building cp310-manylinux_x86_64 wheel CPython 3.10 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_x86_64.whl size=48679 sha256=859fbd2fbd1e0171a4f69e115836cac899a08ac724b0e8e3a395d585eb865bff Stored in directory: /tmp/pip-ephem-wheel-cache-no1fyjmw/wheels/0a/fd/6e/ed6d1e02e17eb494db42d66b1007518be7f0a60e5b839ebd00 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.43s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp310-cp310-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp310-cp310-manylinux_2_17_x86_64, cp310-cp310-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.21s
✓ cp310-manylinux_x86_64 finished in 5.78s
Building cp311-manylinux_x86_64 wheel CPython 3.11 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_x86_64.whl size=48779 sha256=84c1e4ba8d51c6b2d5f284c8d66bf494d60f66964ae4bab4d1a440ca7c725bfa Stored in directory: /tmp/pip-ephem-wheel-cache-lpx9tfwh/wheels/aa/0c/49/7c4d39428e78274ff9f1db5b9c539aa0d6bd6becda70207fa7 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.66s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp311-cp311-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp311-cp311-manylinux_2_17_x86_64, cp311-cp311-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.19s
✓ cp311-manylinux_x86_64 finished in 6.98s
Building pp37-manylinux_x86_64 wheel PyPy 3.7 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-linux_x86_64.whl size=26689 sha256=544b2be203df21caff2a3d33262b0f89853915ee1e3f5819ed62383868019ab4 Stored in directory: /tmp/pip-ephem-wheel-cache-vhqt865b/wheels/51/1e/86/e35ee69f9e0f5a748fdf1aa69c135ed26d3f41555386024d6a Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 14.09s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp37-pypy37_pp73-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp37-pypy37_pp73-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: pp37-pypy37_pp73-manylinux_2_17_x86_64, pp37-pypy37_pp73-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.21s
✓ pp37-manylinux_x86_64 finished in 14.41s
Building pp38-manylinux_x86_64 wheel PyPy 3.8 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-linux_x86_64.whl size=26290 sha256=ab38047de8a20e1d4324fde5032094608ea0f49185aa5488ce93b8a9ca0aeea8 Stored in directory: /tmp/pip-ephem-wheel-cache-txhrmixn/wheels/4a/57/8a/a0269899474478a36edbc88a26c360aa98e07aa9e938205408 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 11.49s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp38-pypy38_pp73-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp38-pypy38_pp73-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: pp38-pypy38_pp73-manylinux_2_17_x86_64, pp38-pypy38_pp73-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.20s
✓ pp38-manylinux_x86_64 finished in 11.82s
Building pp39-manylinux_x86_64 wheel PyPy 3.9 manylinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-linux_x86_64.whl size=26291 sha256=2ad7c574dad0b3607d57f75fcb9ebf4e8ac82496ee3e7c48aa483ae475101204 Stored in directory: /tmp/pip-ephem-wheel-cache-0jm0h02b/wheels/1c/e0/60/8949ead713bdf6327db6c9700e8a2484069464da7d9dd8578c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 11.93s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp39-pypy39_pp73-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_x86_64, manylinux2014_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp39-pypy39_pp73-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: pp39-pypy39_pp73-manylinux_2_17_x86_64, pp39-pypy39_pp73-manylinux2014_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl /output
✓ 0.19s
✓ pp39-manylinux_x86_64 finished in 12.26s Copying wheels back to host...
✓ 0.11s
Starting container image quay.io/pypa/manylinux2014_i686:2023-06-08-775c518...
info: This container will host the build for cp37-manylinux_i686, cp38-manylinux_i686, cp39-manylinux_i686, cp310-manylinux_i686, cp311-manylinux_i686, pp37-manylinux_i686, pp38-manylinux_i686, pp39-manylinux_i686... 58bdbd826349b6ac7dc833f3b1f7695e5f27cc6e1030839980e64138d5d9c4cf + /bin/true + mkdir -p /project + test -x /opt/python/cp37-cp37m/bin/python + test -x /opt/python/cp38-cp38/bin/python + test -x /opt/python/cp39-cp39/bin/python + test -x /opt/python/cp310-cp310/bin/python + test -x /opt/python/cp311-cp311/bin/python + test -x /opt/python/pp37-pypy37_pp73/bin/python + test -x /opt/python/pp38-pypy38_pp73/bin/python + test -x /opt/python/pp39-pypy39_pp73/bin/python
✓ 0.33s
Copying project into container...
+ mkdir -p /project ✓ 0.13s
Running before_all...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + sh -c 'yum install -y wget && ./build_cmph.sh'
Loaded plugins: fastestmirror, ovl Determining fastest mirrors
- base: centos-altarch.mirror.liteserver.nl
- extras: centos-altarch.mirror.liteserver.nl
- updates: centos-altarch.mirror.liteserver.nl Resolving Dependencies --> Running transaction check ---> Package wget.i686 0:1.14-18.el7_6.1 will be installed --> Finished Dependency Resolution
Dependencies Resolved
================================================================================ Package Arch Version Repository Size
Installing: wget i686 1.14-18.el7_6.1 base 546 k
Transaction Summary
Install 1 Package
Total download size: 546 k Installed size: 2.0 M Downloading packages: Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : wget-1.14-18.el7_6.1.i686 1/1 install-info: No such file or directory for /usr/share/info/wget.info.gz Verifying : wget-1.14-18.el7_6.1.i686 1/1
Installed: wget.i686 0:1.14-18.el7_6.1
Complete! --2023-06-23 15:29:35-- https://deac-ams.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)... 185.34.27.55 Connecting to deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)|185.34.27.55|:443... connected. HTTP request sent, awaiting response... 302 Moved Temporarily Location: https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net [following] --2023-06-23 15:29:36-- https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 204.68.111.105 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|204.68.111.105|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz [following] --2023-06-23 15:29:36-- https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)... 148.251.120.111, 2a01:4f8:210:1057::2 Connecting to kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)|148.251.120.111|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 532528 (520K) [application/x-gzip] Saving to: ‘cmph.tar.gz’
0K .......... .......... .......... .......... .......... 9% 2.12M 0s 50K .......... .......... .......... .......... .......... 19% 2.28M 0s
100K .......... .......... .......... .......... .......... 28% 2.53M 0s 150K .......... .......... .......... .......... .......... 38% 2.35M 0s 200K .......... .......... .......... .......... .......... 48% 2.42M 0s 250K .......... .......... .......... .......... .......... 57% 2.47M 0s 300K .......... .......... .......... .......... .......... 67% 3.04M 0s 350K .......... .......... .......... .......... .......... 76% 2.46M 0s 400K .......... .......... .......... .......... .......... 86% 4.04M 0s 450K .......... .......... .......... .......... .......... 96% 3.09M 0s 500K .......... .......... 100% 10.3M=0.2s
2023-06-23 15:29:37 (2.67 MB/s) - ‘cmph.tar.gz’ saved [532528/532528]
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gawk... (cached) gawk 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 whether make supports the include directive... yes (GNU style) checking dependency style of gcc... gcc3 checking whether ln -s works... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld checking if the linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /opt/rh/devtoolset-10/root/usr/bin/nm -B checking the name lister (/opt/rh/devtoolset-10/root/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... 1572864 checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/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 ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /opt/rh/devtoolset-10/root/usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... no checking if : 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... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld) 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 getconf... getconf checking for CFLAGS value to request large file support... -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 checking for LDFLAGS value to request large file support... checking for LIBS value to request large file support... checking for _FILE_OFFSET_BITS... 64 checking for _LARGEFILE_SOURCE... 1 checking for _LARGE_FILES... no checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for cos in -lm... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld checking if the linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld) is GNU ld... yes checking whether the g++ linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/opt/rh/devtoolset-10/root/usr/libexec/gcc/i686-redhat-linux/10/ld) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking if there is spoon... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating cxxmph/Makefile config.status: creating tests/Makefile config.status: creating examples/Makefile config.status: creating man/Makefile config.status: creating cmph.pc config.status: creating cxxmph.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory
/project/cmph/cmph-2.0.2' Making all in src make[2]: Entering directory
/project/cmph/cmph-2.0.2/src' gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT wingetopt.o -MD -MP -MF .deps/wingetopt.Tpo -c -o wingetopt.o wingetopt.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c -o jenkins_hash.lo jenkins_hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c -o vstack.lo vstack.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c -o vqueue.lo vqueue.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c -o cmph.lo cmph.c mv -f .deps/wingetopt.Tpo .deps/wingetopt.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c -o cmph_structs.lo cmph_structs.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -fPIC -DPIC -o .libs/vqueue.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -fPIC -DPIC -o .libs/cmph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -fPIC -DPIC -o .libs/graph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -fPIC -DPIC -o .libs/vstack.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -fPIC -DPIC -o .libs/jenkins_hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -fPIC -DPIC -o .libs/cmph_structs.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -fPIC -DPIC -o .libs/hash.o cmph_structs.c: In function ‘__cmph_dump’: cmph_structs.c:27:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 27 | register size_t nbytes; | ^~~~~~ cmph_structs.c: In function ‘__cmph_load’: cmph_structs.c:38:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 38 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -o vqueue.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -o vstack.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -o cmph_structs.o >/dev/null 2>&1 mv -f .deps/vqueue.Tpo .deps/vqueue.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c -o chm.lo chm.c mv -f .deps/vstack.Tpo .deps/vstack.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c -o bmz.lo bmz.c mv -f .deps/main.Tpo .deps/main.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c -o bmz8.lo bmz8.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -o jenkins_hash.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1 mv -f .deps/cmph_structs.Tpo .deps/cmph_structs.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c -o bdz.lo bdz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -fPIC -DPIC -o .libs/chm.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -fPIC -DPIC -o .libs/bmz.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -fPIC -DPIC -o .libs/bdz.o chm.c: In function ‘chm_dump’: chm.c:207:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 207 | register size_t nbytes; | ^~~~~~ chm.c: In function ‘chm_load’: chm.c:243:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 243 | register size_t nbytes; | ^~~~~~ bmz.c: In function ‘bmz_dump’: bmz.c:462:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 462 | register size_t nbytes; | ^~~~~~ bmz.c: In function ‘bmz_load’: bmz.c:499:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 499 | register size_t nbytes; | ^~~~~~ mv -f .deps/hash.Tpo .deps/hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c -o bdz_ph.lo bdz_ph.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -fPIC -DPIC -o .libs/bmz8.o bdz.c: In function ‘bdz_dump’: bdz.c:502:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 502 | register size_t nbytes; | ^~~~~~ bdz.c: In function ‘bdz_load’: bdz.c:537:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 537 | register size_t nbytes; | ^~~~~~ mv -f .deps/jenkins_hash.Tpo .deps/jenkins_hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c -o brz.lo brz.c bmz8.c: In function ‘bmz8_dump’: bmz8.c:470:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 470 | register size_t nbytes; | ^~~~~~ bmz8.c: In function ‘bmz8_load’: bmz8.c:505:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 505 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -o cmph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -fPIC -DPIC -o .libs/bdz_ph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -fPIC -DPIC -o .libs/brz.o bdz_ph.c: In function ‘bdz_ph_dump’: bdz_ph.c:457:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 457 | register size_t nbytes; | ^~~~~~ bdz_ph.c: In function ‘bdz_ph_load’: bdz_ph.c:487:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 487 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -o chm.o >/dev/null 2>&1 brz.c: In function ‘brz_gen_mphf’: brz.c:249:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 249 | register size_t nbytes; | ^~~~~~ brz.c: In function ‘brz_dump’: brz.c:580:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 580 | register size_t nbytes; | ^~~~~~ brz.c: In function ‘brz_load’: brz.c:599:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 599 | register size_t nbytes; | ^~~~~~ mv -f .deps/graph.Tpo .deps/graph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c -o fch.lo fch.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -fPIC -DPIC -o .libs/fch.o fch.c: In function ‘fch_dump’: fch.c:319:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 319 | register size_t nbytes; | ^~~~~~ fch.c: In function ‘fch_load’: fch.c:355:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 355 | register size_t nbytes; | ^~~~~~ mv -f .deps/cmph.Tpo .deps/cmph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c -o fch_buckets.lo fch_buckets.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -o bmz.o >/dev/null 2>&1 mv -f .deps/chm.Tpo .deps/chm.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c -o chd.lo chd.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -o bdz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -fPIC -DPIC -o .libs/fch_buckets.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -fPIC -DPIC -o .libs/chd.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -o bdz_ph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -o bmz8.o >/dev/null 2>&1 chd.c: In function ‘chd_load’: chd.c:178:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 178 | register size_t nbytes; | ^~~~~~ chd.c: In function ‘chd_dump’: chd.c:197:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 197 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -o fch.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -o chd.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -o fch_buckets.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -o brz.o >/dev/null 2>&1 mv -f .deps/chd.Tpo .deps/chd.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c -o chd_ph.lo chd_ph.c mv -f .deps/fch_buckets.Tpo .deps/fch_buckets.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c -o miller_rabin.lo miller_rabin.c mv -f .deps/bmz.Tpo .deps/bmz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c -o buffer_manager.lo buffer_manager.c mv -f .deps/bdz_ph.Tpo .deps/bdz_ph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c -o buffer_entry.lo buffer_entry.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -fPIC -DPIC -o .libs/miller_rabin.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -fPIC -DPIC -o .libs/chd_ph.o mv -f .deps/bdz.Tpo .deps/bdz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c -o select.lo select.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -fPIC -DPIC -o .libs/buffer_manager.o mv -f .deps/fch.Tpo .deps/fch.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c -o compressed_seq.lo compressed_seq.c chd_ph.c: In function ‘chd_ph_load’: chd_ph.c:844:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 844 | register size_t nbytes; | ^~~~~~ chd_ph.c: In function ‘chd_ph_dump’: chd_ph.c:875:18: warning: variable ‘nbytes’ set but not used [-Wunused-but-set-variable] 875 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -fPIC -DPIC -o .libs/select.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -fPIC -DPIC -o .libs/buffer_entry.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -o buffer_manager.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -o miller_rabin.o >/dev/null 2>&1 mv -f .deps/bmz8.Tpo .deps/bmz8.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c -o compressed_rank.lo compressed_rank.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -fPIC -DPIC -o .libs/compressed_seq.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -o buffer_entry.o >/dev/null 2>&1 mv -f .deps/buffer_manager.Tpo .deps/buffer_manager.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c -o linear_string_map.lo linear_string_map.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -fPIC -DPIC -o .libs/compressed_rank.o mv -f .deps/miller_rabin.Tpo .deps/miller_rabin.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c -o cmph_benchmark.lo cmph_benchmark.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -o select.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -fPIC -DPIC -o .libs/linear_string_map.o mv -f .deps/buffer_entry.Tpo .deps/buffer_entry.Plo gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT bm_numbers.o -MD -MP -MF .deps/bm_numbers.Tpo -c -o bm_numbers.o bm_numbers.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -o linear_string_map.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -fPIC -DPIC -o .libs/cmph_benchmark.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -o compressed_seq.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -o compressed_rank.o >/dev/null 2>&1 mv -f .deps/bm_numbers.Tpo .deps/bm_numbers.Po mv -f .deps/linear_string_map.Tpo .deps/linear_string_map.Plo mv -f .deps/select.Tpo .deps/select.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -o cmph_benchmark.o >/dev/null 2>&1 mv -f .deps/brz.Tpo .deps/brz.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -o chd_ph.o >/dev/null 2>&1 mv -f .deps/cmph_benchmark.Tpo .deps/cmph_benchmark.Plo mv -f .deps/compressed_seq.Tpo .deps/compressed_seq.Plo mv -f .deps/compressed_rank.Tpo .deps/compressed_rank.Plo mv -f .deps/chd_ph.Tpo .deps/chd_ph.Plo /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -version-info 0:0:0 -lm -o libcmph.la -rpath /project/cmph/lib hash.lo jenkins_hash.lo vstack.lo vqueue.lo graph.lo cmph.lo cmph_structs.lo chm.lo bmz.lo bmz8.lo bdz.lo bdz_ph.lo brz.lo fch.lo fch_buckets.lo chd.lo chd_ph.lo miller_rabin.lo buffer_manager.lo buffer_entry.lo select.lo compressed_seq.lo compressed_rank.lo linear_string_map.lo cmph_benchmark.lo
libtool: link: gcc -shared -fPIC -DPIC .libs/hash.o .libs/jenkins_hash.o .libs/vstack.o .libs/vqueue.o .libs/graph.o .libs/cmph.o .libs/cmph_structs.o .libs/chm.o .libs/bmz.o .libs/bmz8.o .libs/bdz.o .libs/bdz_ph.o .libs/brz.o .libs/fch.o .libs/fch_buckets.o .libs/chd.o .libs/chd_ph.o .libs/miller_rabin.o .libs/buffer_manager.o .libs/buffer_entry.o .libs/select.o .libs/compressed_seq.o .libs/compressed_rank.o .libs/linear_string_map.o .libs/cmph_benchmark.o -lm -g -O2 -Wl,-soname -Wl,libcmph.so.0 -o .libs/libcmph.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libcmph.so.0" && ln -s "libcmph.so.0.0.0" "libcmph.so.0") libtool: link: (cd ".libs" && rm -f "libcmph.so" && ln -s "libcmph.so.0.0.0" "libcmph.so") libtool: link: ar cru .libs/libcmph.a hash.o jenkins_hash.o vstack.o vqueue.o graph.o cmph.o cmph_structs.o chm.o bmz.o bmz8.o bdz.o bdz_ph.o brz.o fch.o fch_buckets.o chd.o chd_ph.o miller_rabin.o buffer_manager.o buffer_entry.o select.o compressed_seq.o compressed_rank.o linear_string_map.o cmph_benchmark.o libtool: link: ranlib .libs/libcmph.a libtool: link: ( cd ".libs" && rm -f "libcmph.la" && ln -s "../libcmph.la" "libcmph.la" ) /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o cmph main.o wingetopt.o libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o bm_numbers bm_numbers.o libcmph.la libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/bm_numbers bm_numbers.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/cmph main.o wingetopt.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/src' Making all in tests make[2]: Entering directory
/project/cmph/cmph-2.0.2/tests' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT packed_mphf_tests.o -MD -MP -MF .deps/packed_mphf_tests.Tpo -c -o packed_mphf_tests.o packed_mphf_tests.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT mphf_tests.o -MD -MP -MF .deps/mphf_tests.Tpo -c -o mphf_tests.o mphf_tests.c mv -f .deps/mphf_tests.Tpo .deps/mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o mphf_tests mphf_tests.o ../src/libcmph.la mv -f .deps/packed_mphf_tests.Tpo .deps/packed_mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o packed_mphf_tests packed_mphf_tests.o ../src/libcmph.la libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/mphf_tests mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/packed_mphf_tests packed_mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/tests' Making all in examples make[2]: Entering directory
/project/cmph/cmph-2.0.2/examples' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT vector_adapter_ex1.o -MD -MP -MF .deps/vector_adapter_ex1.Tpo -c -o vector_adapter_ex1.o vector_adapter_ex1.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT file_adapter_ex2.o -MD -MP -MF .deps/file_adapter_ex2.Tpo -c -o file_adapter_ex2.o file_adapter_ex2.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT struct_vector_adapter_ex3.o -MD -MP -MF .deps/struct_vector_adapter_ex3.Tpo -c -o struct_vector_adapter_ex3.o struct_vector_adapter_ex3.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -MT small_set_ex4.o -MD -MP -MF .deps/small_set_ex4.Tpo -c -o small_set_ex4.o small_set_ex4.c mv -f .deps/file_adapter_ex2.Tpo .deps/file_adapter_ex2.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o file_adapter_ex2 file_adapter_ex2.o ../src/libcmph.la mv -f .deps/struct_vector_adapter_ex3.Tpo .deps/struct_vector_adapter_ex3.Po mv -f .deps/vector_adapter_ex1.Tpo .deps/vector_adapter_ex1.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o vector_adapter_ex1 vector_adapter_ex1.o ../src/libcmph.la mv -f .deps/small_set_ex4.Tpo .deps/small_set_ex4.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -lm -o small_set_ex4 small_set_ex4.o ../src/libcmph.la libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/file_adapter_ex2 file_adapter_ex2.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/vector_adapter_ex1 vector_adapter_ex1.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o .libs/small_set_ex4 small_set_ex4.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory/project/cmph/cmph-2.0.2/examples' Making all in man make[2]: Entering directory
/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done forall'. make[2]: Leaving directory
/project/cmph/cmph-2.0.2/man' make[2]: Entering directory/project/cmph/cmph-2.0.2' make[2]: Leaving directory
/project/cmph/cmph-2.0.2' make[1]: Leaving directory/project/cmph/cmph-2.0.2' Making install in src make[1]: Entering directory
/project/cmph/cmph-2.0.2/src' make[2]: Entering directory `/project/cmph/cmph-2.0.2/src' /usr/bin/mkdir -p '/project/cmph/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libcmph.la '/project/cmph/lib' libtool: install: /usr/bin/install -c .libs/libcmph.so.0.0.0 /project/cmph/lib/libcmph.so.0.0.0 libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so.0 || { rm -f libcmph.so.0 && ln -s libcmph.so.0.0.0 libcmph.so.0; }; }) libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so || { rm -f libcmph.so && ln -s libcmph.so.0.0.0 libcmph.so; }; }) libtool: install: /usr/bin/install -c .libs/libcmph.lai /project/cmph/lib/libcmph.la libtool: install: /usr/bin/install -c .libs/libcmph.a /project/cmph/lib/libcmph.a libtool: install: chmod 644 /project/cmph/lib/libcmph.a libtool: install: ranlib /project/cmph/lib/libcmph.a libtool: finish: PATH="/opt/python/cp38-cp38/bin:/opt/rh/devtoolset-10/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /project/cmph/libLibraries have been installed in: /project/cmph/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to '/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages.
/usr/bin/mkdir -p '/project/cmph/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c cmph '/project/cmph/bin' libtool: install: /usr/bin/install -c .libs/cmph /project/cmph/bin/cmph /usr/bin/mkdir -p '/project/cmph/include' /usr/bin/install -c -m 644 cmph.h cmph_types.h cmph_time.h chd_ph.h '/project/cmph/include' make[2]: Leaving directory
/project/cmph/cmph-2.0.2/src' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/src' Making install in tests make[1]: Entering directory/project/cmph/cmph-2.0.2/tests' make[2]: Entering directory
/project/cmph/cmph-2.0.2/tests' make[2]: Nothing to be done forinstall-exec-am'. make[2]: Nothing to be done for
install-data-am'. make[2]: Leaving directory/project/cmph/cmph-2.0.2/tests' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/tests' Making install in examples make[1]: Entering directory/project/cmph/cmph-2.0.2/examples' make[2]: Entering directory
/project/cmph/cmph-2.0.2/examples' make[2]: Nothing to be done forinstall-exec-am'. make[2]: Nothing to be done for
install-data-am'. make[2]: Leaving directory/project/cmph/cmph-2.0.2/examples' make[1]: Leaving directory
/project/cmph/cmph-2.0.2/examples' Making install in man make[1]: Entering directory/project/cmph/cmph-2.0.2/man' make[2]: Entering directory
/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done forinstall-exec-am'. /usr/bin/mkdir -p '/project/cmph/share/man/man1' /usr/bin/install -c -m 644 cmph.1 '/project/cmph/share/man/man1' make[2]: Leaving directory
/project/cmph/cmph-2.0.2/man' make[1]: Leaving directory/project/cmph/cmph-2.0.2/man' make[1]: Entering directory
/project/cmph/cmph-2.0.2' make[2]: Entering directory/project/cmph/cmph-2.0.2' make[2]: Nothing to be done for
install-exec-am'. /usr/bin/mkdir -p '/project/cmph/lib/pkgconfig' /usr/bin/install -c -m 644 cmph.pc '/project/cmph/lib/pkgconfig' make[2]: Leaving directory/project/cmph/cmph-2.0.2' make[1]: Leaving directory
/project/cmph/cmph-2.0.2'✓ 10.64s
Building cp37-manylinux_i686 wheel CPython 3.7 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_i686.whl size=46693 sha256=91a2c079b5cfc156324305101503f18532af08f03a85a82c6fd7fadd54671534 Stored in directory: /tmp/pip-ephem-wheel-cache-l1u14e_7/wheels/84/ce/ef/3768e7d143f298e3f79dda4c505f7ffa005f429720ee7533a3 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.81s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp37-cp37m-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp37-cp37m-manylinux_2_17_i686, cp37-cp37m-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.62s
✓ cp37-manylinux_i686 finished in 6.56s
Building cp38-manylinux_i686 wheel CPython 3.8 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_i686.whl size=46799 sha256=38a6fecbd8f0b717496248e05b3b044f0f1920a249fedb938f93cafe9cbfc356 Stored in directory: /tmp/pip-ephem-wheel-cache-5rbqxy_g/wheels/d4/3a/c0/4dc152b1840724d5b992a8268bb4ef33fdbe42ffe1429b845c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 4.99s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp38-cp38-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp38-cp38-manylinux_2_17_i686, cp38-cp38-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.21s
✓ cp38-manylinux_i686 finished in 5.33s
Building cp39-manylinux_i686 wheel CPython 3.9 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_i686.whl size=46666 sha256=9851a9756f016006d83021040f2bc980799e00ed5bfcf8e4fe094b88ac9d068f Stored in directory: /tmp/pip-ephem-wheel-cache-klo78rkn/wheels/b1/d1/e9/62441f1a701c6dcdb0d9ccfd73a0bfbac93e8cf297e5312e15 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.83s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp39-cp39-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp39-cp39-manylinux_2_17_i686, cp39-cp39-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.21s
✓ cp39-manylinux_i686 finished in 6.18s
Building cp310-manylinux_i686 wheel CPython 3.10 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_i686.whl size=46677 sha256=8ff870c6f9484dadfb4b0827697799f4b92d39f0a5356d8d17d8eb565d421f07 Stored in directory: /tmp/pip-ephem-wheel-cache-aslpv7q2/wheels/0a/fd/6e/ed6d1e02e17eb494db42d66b1007518be7f0a60e5b839ebd00 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.16s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp310-cp310-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp310-cp310-manylinux_2_17_i686, cp310-cp310-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.20s
✓ cp310-manylinux_i686 finished in 5.49s
Building cp311-manylinux_i686 wheel CPython 3.11 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_i686.whl size=46777 sha256=b3e9e2f1e3eaddb406987293f335dc5301b08e3ff216195e97650a78002fe7b7 Stored in directory: /tmp/pip-ephem-wheel-cache-kmi2gfk3/wheels/aa/0c/49/7c4d39428e78274ff9f1db5b9c539aa0d6bd6becda70207fa7 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.06s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp311-cp311-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp311-cp311-manylinux_2_17_i686, cp311-cp311-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.20s
✓ cp311-manylinux_i686 finished in 6.38s
Building pp37-manylinux_i686 wheel PyPy 3.7 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.03s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-linux_i686.whl size=27672 sha256=59e0f81efff53d6e6d2701234076d84e5c027948daa8a21e25cca1aff556e432 Stored in directory: /tmp/pip-ephem-wheel-cache-a8k6v3fk/wheels/51/1e/86/e35ee69f9e0f5a748fdf1aa69c135ed26d3f41555386024d6a Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 13.76s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp37-pypy37_pp73-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp37-pypy37_pp73-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: pp37-pypy37_pp73-manylinux_2_17_i686, pp37-pypy37_pp73-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.20s
✓ pp37-manylinux_i686 finished in 14.09s
Building pp38-manylinux_i686 wheel PyPy 3.8 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-linux_i686.whl size=27284 sha256=4db7c94e74dcc2585594b6de60a9d2cecaadb3de43cecaa163ce8a61e6ca40f2 Stored in directory: /tmp/pip-ephem-wheel-cache-i1yhvp0i/wheels/4a/57/8a/a0269899474478a36edbc88a26c360aa98e07aa9e938205408 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 12.61s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp38-pypy38_pp73-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp38-pypy38_pp73-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: pp38-pypy38_pp73-manylinux_2_17_i686, pp38-pypy38_pp73-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.20s
✓ pp38-manylinux_i686 finished in 12.93s
Building pp39-manylinux_i686 wheel PyPy 3.9 manylinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-linux_i686.whl size=27286 sha256=4b95406860fbf1f167e35eabe8a8e385bc13cb296e3e9bdcf0ce3e3ffcdd7cc9 Stored in directory: /tmp/pip-ephem-wheel-cache-0gsaxvt9/wheels/1c/e0/60/8949ead713bdf6327db6c9700e8a2484069464da7d9dd8578c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 12.58s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-pp39-pypy39_pp73-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: manylinux_2_17_i686, manylinux2014_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: pp39-pypy39_pp73-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: pp39-pypy39_pp73-manylinux_2_17_i686, pp39-pypy39_pp73-manylinux2014_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl /output
✓ 0.20s
✓ pp39-manylinux_i686 finished in 12.90s Copying wheels back to host...
✓ 0.13s
Starting container image quay.io/pypa/musllinux_1_1_x86_64:2023-06-08-775c518...
info: This container will host the build for cp37-musllinux_x86_64, cp38-musllinux_x86_64, cp39-musllinux_x86_64, cp310-musllinux_x86_64, cp311-musllinux_x86_64... 63ac63317ac4a9a4e70c3dbb6459901aaaf03ed5af5cfd41063da006c2a5f7ac + /bin/true + mkdir -p /project + test -x /opt/python/cp37-cp37m/bin/python + test -x /opt/python/cp38-cp38/bin/python + test -x /opt/python/cp39-cp39/bin/python + test -x /opt/python/cp310-cp310/bin/python + test -x /opt/python/cp311-cp311/bin/python
✓ 0.27s
Copying project into container...
+ mkdir -p /project ✓ 0.12s
Running before_all...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + sh -c 'apk add wget && ./build_cmph.sh'
fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/community/x86_64/APKINDEX.tar.gz (1/1) Installing wget (1.20.3-r1) Executing busybox-1.31.1-r22.trigger OK: 496 MiB in 177 packages --2023-06-23 15:30:52-- https://deac-ams.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)... 185.34.27.55 Connecting to deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)|185.34.27.55|:443... connected. HTTP request sent, awaiting response... 302 Moved Temporarily Location: https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net [following] --2023-06-23 15:30:52-- https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 204.68.111.105 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|204.68.111.105|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz [following] --2023-06-23 15:30:53-- https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)... 148.251.120.111, 2a01:4f8:210:1057::2 Connecting to kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)|148.251.120.111|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 532528 (520K) [application/x-gzip] Saving to: 'cmph.tar.gz'
0K .......... .......... .......... .......... .......... 9% 1.89M 0s 50K .......... .......... .......... .......... .......... 19% 2.08M 0s
100K .......... .......... .......... .......... .......... 28% 2.73M 0s 150K .......... .......... .......... .......... .......... 38% 2.68M 0s 200K .......... .......... .......... .......... .......... 48% 2.33M 0s 250K .......... .......... .......... .......... .......... 57% 1.10M 0s 300K .......... .......... .......... .......... .......... 67% 2.59M 0s 350K .......... .......... .......... .......... .......... 76% 2.36M 0s 400K .......... .......... .......... .......... .......... 86% 2.04M 0s 450K .......... .......... .......... .......... .......... 96% 2.70M 0s 500K .......... .......... 100% 112M=0.2s
2023-06-23 15:30:53 (2.18 MB/s) - 'cmph.tar.gz' saved [532528/532528]
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gawk... (cached) awk 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 whether make supports the include directive... yes (GNU style) checking dependency style of gcc... gcc3 checking whether ln -s works... yes checking build system type... x86_64-pc-linux-musl checking host system type... x86_64-pc-linux-musl 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/x86_64-alpine-linux-musl/bin/ld checking if the linker (/usr/x86_64-alpine-linux-musl/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 the maximum length of command line arguments... 98304 checking how to convert x86_64-pc-linux-musl file names to x86_64-pc-linux-musl format... func_convert_file_noop checking how to convert x86_64-pc-linux-musl file names to toolchain format... func_convert_file_noop checking for /usr/x86_64-alpine-linux-musl/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 ar... ar 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... no checking if : 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/x86_64-alpine-linux-musl/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 getconf... getconf checking for CFLAGS value to request large file support... no checking for LDFLAGS value to request large file support... no checking for LIBS value to request large file support... no checking for _FILE_OFFSET_BITS... no checking for _LARGEFILE_SOURCE... no checking for _LARGE_FILES... no checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for cos in -lm... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64 checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking if there is spoon... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating cxxmph/Makefile config.status: creating tests/Makefile config.status: creating examples/Makefile config.status: creating man/Makefile config.status: creating cmph.pc config.status: creating cxxmph.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory '/project/cmph/cmph-2.0.2' Making all in src make[2]: Entering directory '/project/cmph/cmph-2.0.2/src' gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT wingetopt.o -MD -MP -MF .deps/wingetopt.Tpo -c -o wingetopt.o wingetopt.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c -o jenkins_hash.lo jenkins_hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c -o vstack.lo vstack.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c -o vqueue.lo vqueue.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c -o cmph.lo cmph.c mv -f .deps/wingetopt.Tpo .deps/wingetopt.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c -o cmph_structs.lo cmph_structs.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -fPIC -DPIC -o .libs/vstack.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -fPIC -DPIC -o .libs/hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -fPIC -DPIC -o .libs/graph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -fPIC -DPIC -o .libs/vqueue.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -fPIC -DPIC -o .libs/cmph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -fPIC -DPIC -o .libs/jenkins_hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -fPIC -DPIC -o .libs/cmph_structs.o cmph_structs.c: In function '__cmph_dump': cmph_structs.c:27:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 27 | register size_t nbytes; | ^~~~~~ cmph_structs.c: In function '__cmph_load': cmph_structs.c:38:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 38 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -o vqueue.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -o vstack.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -o cmph_structs.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1 mv -f .deps/vqueue.Tpo .deps/vqueue.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c -o chm.lo chm.c mv -f .deps/vstack.Tpo .deps/vstack.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c -o bmz.lo bmz.c mv -f .deps/cmph_structs.Tpo .deps/cmph_structs.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c -o bmz8.lo bmz8.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -fPIC -DPIC -o .libs/chm.o mv -f .deps/main.Tpo .deps/main.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c -o bdz.lo bdz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -fPIC -DPIC -o .libs/bmz.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -fPIC -DPIC -o .libs/bmz8.o chm.c: In function 'chm_dump': chm.c:207:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 207 | register size_t nbytes; | ^~~~~~ chm.c: In function 'chm_load': chm.c:243:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 243 | register size_t nbytes; | ^~~~~~ bmz.c: In function 'bmz_dump': bmz.c:462:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 462 | register size_t nbytes; | ^~~~~~ bmz.c: In function 'bmz_load': bmz.c:499:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 499 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -fPIC -DPIC -o .libs/bdz.o bmz8.c: In function 'bmz8_dump': bmz8.c:470:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 470 | register size_t nbytes; | ^~~~~~ bmz8.c: In function 'bmz8_load': bmz8.c:505:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 505 | register size_t nbytes; | ^~~~~~ mv -f .deps/hash.Tpo .deps/hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c -o bdz_ph.lo bdz_ph.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -o jenkins_hash.o >/dev/null 2>&1 bdz.c: In function 'bdz_dump': bdz.c:502:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 502 | register size_t nbytes; | ^~~~~~ bdz.c: In function 'bdz_load': bdz.c:537:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 537 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -fPIC -DPIC -o .libs/bdz_ph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o >/dev/null 2>&1 bdz_ph.c: In function 'bdz_ph_dump': bdz_ph.c:457:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 457 | register size_t nbytes; | ^~~~~~ bdz_ph.c: In function 'bdz_ph_load': bdz_ph.c:487:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 487 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -o cmph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -o chm.o >/dev/null 2>&1 mv -f .deps/jenkins_hash.Tpo .deps/jenkins_hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c -o brz.lo brz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -fPIC -DPIC -o .libs/brz.o brz.c: In function 'brz_gen_mphf': brz.c:249:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 249 | register size_t nbytes; | ^~~~~~ brz.c: In function 'brz_dump': brz.c:580:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 580 | register size_t nbytes; | ^~~~~~ brz.c: In function 'brz_load': brz.c:599:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 599 | register size_t nbytes; | ^~~~~~ mv -f .deps/graph.Tpo .deps/graph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c -o fch.lo fch.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -fPIC -DPIC -o .libs/fch.o fch.c: In function 'fch_dump': fch.c:319:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 319 | register size_t nbytes; | ^~~~~~ fch.c: In function 'fch_load': fch.c:355:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 355 | register size_t nbytes; | ^~~~~~ mv -f .deps/chm.Tpo .deps/chm.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c -o fch_buckets.lo fch_buckets.c mv -f .deps/cmph.Tpo .deps/cmph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c -o chd.lo chd.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -fPIC -DPIC -o .libs/fch_buckets.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -o bmz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -o bdz_ph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -fPIC -DPIC -o .libs/chd.o chd.c: In function 'chd_load': chd.c:178:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 178 | register size_t nbytes; | ^~~~~~ chd.c: In function 'chd_dump': chd.c:197:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 197 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -o bmz8.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -o bdz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -o chd.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -o fch_buckets.o >/dev/null 2>&1 mv -f .deps/chd.Tpo .deps/chd.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c -o chd_ph.lo chd_ph.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -o fch.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -fPIC -DPIC -o .libs/chd_ph.o chd_ph.c: In function 'chd_ph_load': chd_ph.c:844:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 844 | register size_t nbytes; | ^~~~~~ chd_ph.c: In function 'chd_ph_dump': chd_ph.c:875:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 875 | register size_t nbytes; | ^~~~~~ mv -f .deps/fch_buckets.Tpo .deps/fch_buckets.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c -o miller_rabin.lo miller_rabin.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -fPIC -DPIC -o .libs/miller_rabin.o mv -f .deps/bdz_ph.Tpo .deps/bdz_ph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c -o buffer_manager.lo buffer_manager.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -o brz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -fPIC -DPIC -o .libs/buffer_manager.o mv -f .deps/bmz.Tpo .deps/bmz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c -o buffer_entry.lo buffer_entry.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -o miller_rabin.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -fPIC -DPIC -o .libs/buffer_entry.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -o buffer_manager.o >/dev/null 2>&1 mv -f .deps/bdz.Tpo .deps/bdz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c -o select.lo select.c mv -f .deps/miller_rabin.Tpo .deps/miller_rabin.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c -o compressed_seq.lo compressed_seq.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -fPIC -DPIC -o .libs/select.o mv -f .deps/buffer_manager.Tpo .deps/buffer_manager.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c -o compressed_rank.lo compressed_rank.c mv -f .deps/bmz8.Tpo .deps/bmz8.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c -o linear_string_map.lo linear_string_map.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -o buffer_entry.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -fPIC -DPIC -o .libs/compressed_seq.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -fPIC -DPIC -o .libs/compressed_rank.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -fPIC -DPIC -o .libs/linear_string_map.o mv -f .deps/fch.Tpo .deps/fch.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c -o cmph_benchmark.lo cmph_benchmark.c mv -f .deps/buffer_entry.Tpo .deps/buffer_entry.Plo gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bm_numbers.o -MD -MP -MF .deps/bm_numbers.Tpo -c -o bm_numbers.o bm_numbers.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -fPIC -DPIC -o .libs/cmph_benchmark.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -o linear_string_map.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -o select.o >/dev/null 2>&1 mv -f .deps/linear_string_map.Tpo .deps/linear_string_map.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -o cmph_benchmark.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -o compressed_rank.o >/dev/null 2>&1 mv -f .deps/bm_numbers.Tpo .deps/bm_numbers.Po libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -o compressed_seq.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -o chd_ph.o >/dev/null 2>&1 mv -f .deps/cmph_benchmark.Tpo .deps/cmph_benchmark.Plo mv -f .deps/select.Tpo .deps/select.Plo mv -f .deps/compressed_rank.Tpo .deps/compressed_rank.Plo mv -f .deps/compressed_seq.Tpo .deps/compressed_seq.Plo mv -f .deps/brz.Tpo .deps/brz.Plo mv -f .deps/chd_ph.Tpo .deps/chd_ph.Plo /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -version-info 0:0:0 -lm -o libcmph.la -rpath /project/cmph/lib hash.lo jenkins_hash.lo vstack.lo vqueue.lo graph.lo cmph.lo cmph_structs.lo chm.lo bmz.lo bmz8.lo bdz.lo bdz_ph.lo brz.lo fch.lo fch_buckets.lo chd.lo chd_ph.lo miller_rabin.lo buffer_manager.lo buffer_entry.lo select.lo compressed_seq.lo compressed_rank.lo linear_string_map.lo cmph_benchmark.lo
libtool: link: gcc -shared -fPIC -DPIC .libs/hash.o .libs/jenkins_hash.o .libs/vstack.o .libs/vqueue.o .libs/graph.o .libs/cmph.o .libs/cmph_structs.o .libs/chm.o .libs/bmz.o .libs/bmz8.o .libs/bdz.o .libs/bdz_ph.o .libs/brz.o .libs/fch.o .libs/fch_buckets.o .libs/chd.o .libs/chd_ph.o .libs/miller_rabin.o .libs/buffer_manager.o .libs/buffer_entry.o .libs/select.o .libs/compressed_seq.o .libs/compressed_rank.o .libs/linear_string_map.o .libs/cmph_benchmark.o -lm -g -O2 -Wl,-soname -Wl,libcmph.so.0 -o .libs/libcmph.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libcmph.so.0" && ln -s "libcmph.so.0.0.0" "libcmph.so.0") libtool: link: (cd ".libs" && rm -f "libcmph.so" && ln -s "libcmph.so.0.0.0" "libcmph.so") libtool: link: ar cru .libs/libcmph.a hash.o jenkins_hash.o vstack.o vqueue.o graph.o cmph.o cmph_structs.o chm.o bmz.o bmz8.o bdz.o bdz_ph.o brz.o fch.o fch_buckets.o chd.o chd_ph.o miller_rabin.o buffer_manager.o buffer_entry.o select.o compressed_seq.o compressed_rank.o linear_string_map.o cmph_benchmark.o ar:u' modifier ignored since
D' is the default (see `U') libtool: link: ranlib .libs/libcmph.a libtool: link: ( cd ".libs" && rm -f "libcmph.la" && ln -s "../libcmph.la" "libcmph.la" ) /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o cmph main.o wingetopt.o libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o bm_numbers bm_numbers.o libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/bm_numbers bm_numbers.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/cmph main.o wingetopt.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/src' Making all in tests make[2]: Entering directory '/project/cmph/cmph-2.0.2/tests' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT packed_mphf_tests.o -MD -MP -MF .deps/packed_mphf_tests.Tpo -c -o packed_mphf_tests.o packed_mphf_tests.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT mphf_tests.o -MD -MP -MF .deps/mphf_tests.Tpo -c -o mphf_tests.o mphf_tests.c mv -f .deps/mphf_tests.Tpo .deps/mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o mphf_tests mphf_tests.o ../src/libcmph.la mv -f .deps/packed_mphf_tests.Tpo .deps/packed_mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o packed_mphf_tests packed_mphf_tests.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/mphf_tests mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/packed_mphf_tests packed_mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/tests' Making all in examples make[2]: Entering directory '/project/cmph/cmph-2.0.2/examples' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT vector_adapter_ex1.o -MD -MP -MF .deps/vector_adapter_ex1.Tpo -c -o vector_adapter_ex1.o vector_adapter_ex1.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT file_adapter_ex2.o -MD -MP -MF .deps/file_adapter_ex2.Tpo -c -o file_adapter_ex2.o file_adapter_ex2.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT struct_vector_adapter_ex3.o -MD -MP -MF .deps/struct_vector_adapter_ex3.Tpo -c -o struct_vector_adapter_ex3.o struct_vector_adapter_ex3.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT small_set_ex4.o -MD -MP -MF .deps/small_set_ex4.Tpo -c -o small_set_ex4.o small_set_ex4.c mv -f .deps/file_adapter_ex2.Tpo .deps/file_adapter_ex2.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o file_adapter_ex2 file_adapter_ex2.o ../src/libcmph.la mv -f .deps/vector_adapter_ex1.Tpo .deps/vector_adapter_ex1.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o vector_adapter_ex1 vector_adapter_ex1.o ../src/libcmph.la mv -f .deps/struct_vector_adapter_ex3.Tpo .deps/struct_vector_adapter_ex3.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/libcmph.la mv -f .deps/small_set_ex4.Tpo .deps/small_set_ex4.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o small_set_ex4 small_set_ex4.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/file_adapter_ex2 file_adapter_ex2.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/vector_adapter_ex1 vector_adapter_ex1.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/small_set_ex4 small_set_ex4.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/examples' Making all in man make[2]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[2]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Leaving directory '/project/cmph/cmph-2.0.2' make[1]: Leaving directory '/project/cmph/cmph-2.0.2' Making install in src make[1]: Entering directory '/project/cmph/cmph-2.0.2/src' make[2]: Entering directory '/project/cmph/cmph-2.0.2/src' .././install-sh -c -d '/project/cmph/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libcmph.la '/project/cmph/lib' libtool: install: /usr/bin/install -c .libs/libcmph.so.0.0.0 /project/cmph/lib/libcmph.so.0.0.0 libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so.0 || { rm -f libcmph.so.0 && ln -s libcmph.so.0.0.0 libcmph.so.0; }; }) libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so || { rm -f libcmph.so && ln -s libcmph.so.0.0.0 libcmph.so; }; }) libtool: install: /usr/bin/install -c .libs/libcmph.lai /project/cmph/lib/libcmph.la libtool: install: /usr/bin/install -c .libs/libcmph.a /project/cmph/lib/libcmph.a libtool: install: chmod 644 /project/cmph/lib/libcmph.a libtool: install: ranlib /project/cmph/lib/libcmph.a libtool: finish: PATH="/opt/python/cp38-cp38/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /project/cmph/libLibraries have been installed in: /project/cmph/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages.
.././install-sh -c -d '/project/cmph/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c cmph '/project/cmph/bin' libtool: install: /usr/bin/install -c .libs/cmph /project/cmph/bin/cmph .././install-sh -c -d '/project/cmph/include' /usr/bin/install -c -m 644 cmph.h cmph_types.h cmph_time.h chd_ph.h '/project/cmph/include' make[2]: Leaving directory '/project/cmph/cmph-2.0.2/src' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/src' Making install in tests make[1]: Entering directory '/project/cmph/cmph-2.0.2/tests' make[2]: Entering directory '/project/cmph/cmph-2.0.2/tests' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/tests' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/tests' Making install in examples make[1]: Entering directory '/project/cmph/cmph-2.0.2/examples' make[2]: Entering directory '/project/cmph/cmph-2.0.2/examples' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/examples' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/examples' Making install in man make[1]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done for 'install-exec-am'. .././install-sh -c -d '/project/cmph/share/man/man1' /usr/bin/install -c -m 644 cmph.1 '/project/cmph/share/man/man1' make[2]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[1]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Nothing to be done for 'install-exec-am'. ./install-sh -c -d '/project/cmph/lib/pkgconfig' /usr/bin/install -c -m 644 cmph.pc '/project/cmph/lib/pkgconfig' make[2]: Leaving directory '/project/cmph/cmph-2.0.2' make[1]: Leaving directory '/project/cmph/cmph-2.0.2'
✓ 5.26s
Building cp37-musllinux_x86_64 wheel CPython 3.7 musllinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_x86_64.whl size=49640 sha256=7b1d28f84204da0d6c3d850a5e762212aab110174cb0c5e293eaea99af0c6d6f Stored in directory: /tmp/pip-ephem-wheel-cache-oidxecyq/wheels/84/ce/ef/3768e7d143f298e3f79dda4c505f7ffa005f429720ee7533a3 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 9.96s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp37-cp37m-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp37-cp37m-musllinux_1_1_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-musllinux_1_1_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-musllinux_1_1_x86_64.whl /output
✓ 0.60s
✓ cp37-musllinux_x86_64 finished in 10.70s
Building cp38-musllinux_x86_64 wheel CPython 3.8 musllinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_x86_64.whl size=50102 sha256=ba816eb3cccc20d3c118fedc8c6fe658ad1cbac4cd2d85f75a31bfadb8f2430a Stored in directory: /tmp/pip-ephem-wheel-cache-4czf6r_1/wheels/d4/3a/c0/4dc152b1840724d5b992a8268bb4ef33fdbe42ffe1429b845c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 9.59s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp38-cp38-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp38-cp38-musllinux_1_1_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-musllinux_1_1_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-musllinux_1_1_x86_64.whl /output
✓ 0.18s
✓ cp38-musllinux_x86_64 finished in 9.92s
Building cp39-musllinux_x86_64 wheel CPython 3.9 musllinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_x86_64.whl size=49690 sha256=48f808c8c939f3aea9c5520b198a1e935435bbd48484902b9b0cc02a1e083573 Stored in directory: /tmp/pip-ephem-wheel-cache-ncgvv4xj/wheels/b1/d1/e9/62441f1a701c6dcdb0d9ccfd73a0bfbac93e8cf297e5312e15 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.71s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp39-cp39-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp39-cp39-musllinux_1_1_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-musllinux_1_1_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-musllinux_1_1_x86_64.whl /output
✓ 0.18s
✓ cp39-musllinux_x86_64 finished in 6.02s
Building cp310-musllinux_x86_64 wheel CPython 3.10 musllinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_x86_64.whl size=49673 sha256=4ca593b42e58ee8d010ed6e5037287d4e5c626ef7756513de1d4d484e3746a0a Stored in directory: /tmp/pip-ephem-wheel-cache-94yri7yt/wheels/0a/fd/6e/ed6d1e02e17eb494db42d66b1007518be7f0a60e5b839ebd00 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.60s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp310-cp310-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp310-cp310-musllinux_1_1_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-musllinux_1_1_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-musllinux_1_1_x86_64.whl /output
✓ 0.18s
✓ cp310-musllinux_x86_64 finished in 5.90s
Building cp311-musllinux_x86_64 wheel CPython 3.11 musllinux x86_64
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_x86_64.whl size=49730 sha256=74eca848d7c5c1b22258a09d31bd56940ae45c95684b67815bd59ea408f5bdac Stored in directory: /tmp/pip-ephem-wheel-cache-8wqfi5dw/wheels/aa/0c/49/7c4d39428e78274ff9f1db5b9c539aa0d6bd6becda70207fa7 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 5.92s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-linux_x86_64.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_x86_64.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_x86_64 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_x86_64 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp311-cp311-linux_x86_64 INFO:auditwheel.wheeltools:New WHEEL info tags: cp311-cp311-musllinux_1_1_x86_64 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-musllinux_1_1_x86_64.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-musllinux_1_1_x86_64.whl /output
✓ 0.18s
✓ cp311-musllinux_x86_64 finished in 6.24s Copying wheels back to host...
✓ 0.11s
Starting container image quay.io/pypa/musllinux_1_1_i686:2023-06-08-775c518...
info: This container will host the build for cp37-musllinux_i686, cp38-musllinux_i686, cp39-musllinux_i686, cp310-musllinux_i686, cp311-musllinux_i686... d6d1b6dd0812e965c40087e4cea9ce440de2391381b7434741a57249f2b348b9 + /bin/true + mkdir -p /project + test -x /opt/python/cp37-cp37m/bin/python + test -x /opt/python/cp38-cp38/bin/python + test -x /opt/python/cp39-cp39/bin/python + test -x /opt/python/cp310-cp310/bin/python + test -x /opt/python/cp311-cp311/bin/python
✓ 0.29s
Copying project into container...
+ mkdir -p /project ✓ 0.12s
Running before_all...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + sh -c 'apk add wget && ./build_cmph.sh'
fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/community/x86/APKINDEX.tar.gz (1/1) Installing wget (1.20.3-r1) Executing busybox-1.31.1-r22.trigger OK: 478 MiB in 177 packages --2023-06-23 15:31:37-- https://deac-ams.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)... 185.34.27.55 Connecting to deac-ams.dl.sourceforge.net (deac-ams.dl.sourceforge.net)|185.34.27.55|:443... connected. HTTP request sent, awaiting response... 302 Moved Temporarily Location: https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net [following] --2023-06-23 15:31:37-- https://downloads.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz?download&failedmirror=deac-ams.dl.sourceforge.net Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 204.68.111.105 Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|204.68.111.105|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz [following] --2023-06-23 15:31:38-- https://kumisystems.dl.sourceforge.net/project/cmph/v2.0.2/cmph-2.0.2.tar.gz Resolving kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)... 148.251.120.111, 2a01:4f8:210:1057::2 Connecting to kumisystems.dl.sourceforge.net (kumisystems.dl.sourceforge.net)|148.251.120.111|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 532528 (520K) [application/x-gzip] Saving to: 'cmph.tar.gz'
0K .......... .......... .......... .......... .......... 9% 1.41M 0s 50K .......... .......... .......... .......... .......... 19% 2.81M 0s
100K .......... .......... .......... .......... .......... 28% 2.81M 0s 150K .......... .......... .......... .......... .......... 38% 2.77M 0s 200K .......... .......... .......... .......... .......... 48% 2.61M 0s 250K .......... .......... .......... .......... .......... 57% 2.68M 0s 300K .......... .......... .......... .......... .......... 67% 3.01M 0s 350K .......... .......... .......... .......... .......... 76% 2.46M 0s 400K .......... .......... .......... .......... .......... 86% 3.53M 0s 450K .......... .......... .......... .......... .......... 96% 2.92M 0s 500K .......... .......... 100% 12.7M=0.2s
2023-06-23 15:31:38 (2.64 MB/s) - 'cmph.tar.gz' saved [532528/532528]
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gawk... (cached) awk 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 whether make supports the include directive... yes (GNU style) checking dependency style of gcc... gcc3 checking whether ln -s works... yes checking build system type... i686-pc-linux-musl checking host system type... i686-pc-linux-musl 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/i586-alpine-linux-musl/bin/ld checking if the linker (/usr/i586-alpine-linux-musl/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 the maximum length of command line arguments... 98304 checking how to convert i686-pc-linux-musl file names to i686-pc-linux-musl format... func_convert_file_noop checking how to convert i686-pc-linux-musl file names to toolchain format... func_convert_file_noop checking for /usr/i586-alpine-linux-musl/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 ar... ar 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... no checking if : 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/i586-alpine-linux-musl/bin/ld) 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 getconf... getconf checking for CFLAGS value to request large file support... no checking for LDFLAGS value to request large file support... no checking for LIBS value to request large file support... no checking for _FILE_OFFSET_BITS... no checking for _LARGEFILE_SOURCE... no checking for _LARGE_FILES... no checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for cos in -lm... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/i586-alpine-linux-musl/bin/ld checking if the linker (/usr/i586-alpine-linux-musl/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/i586-alpine-linux-musl/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-alpine-linux-musl/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking if there is spoon... no checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating cxxmph/Makefile config.status: creating tests/Makefile config.status: creating examples/Makefile config.status: creating man/Makefile config.status: creating cmph.pc config.status: creating cxxmph.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory '/project/cmph/cmph-2.0.2' Making all in src make[2]: Entering directory '/project/cmph/cmph-2.0.2/src' gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT wingetopt.o -MD -MP -MF .deps/wingetopt.Tpo -c -o wingetopt.o wingetopt.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c -o jenkins_hash.lo jenkins_hash.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c -o vstack.lo vstack.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c -o vqueue.lo vqueue.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c -o cmph.lo cmph.c mv -f .deps/wingetopt.Tpo .deps/wingetopt.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c -o cmph_structs.lo cmph_structs.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -fPIC -DPIC -o .libs/graph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -fPIC -DPIC -o .libs/cmph.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -fPIC -DPIC -o .libs/vstack.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -fPIC -DPIC -o .libs/vqueue.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -fPIC -DPIC -o .libs/jenkins_hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -fPIC -DPIC -o .libs/hash.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -fPIC -DPIC -o .libs/cmph_structs.o cmph_structs.c: In function '__cmph_dump': cmph_structs.c:27:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 27 | register size_t nbytes; | ^~~~~~ cmph_structs.c: In function '__cmph_load': cmph_structs.c:38:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 38 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vqueue.lo -MD -MP -MF .deps/vqueue.Tpo -c vqueue.c -o vqueue.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT vstack.lo -MD -MP -MF .deps/vstack.Tpo -c vstack.c -o vstack.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_structs.lo -MD -MP -MF .deps/cmph_structs.Tpo -c cmph_structs.c -o cmph_structs.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o >/dev/null 2>&1 mv -f .deps/vqueue.Tpo .deps/vqueue.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c -o chm.lo chm.c mv -f .deps/cmph_structs.Tpo .deps/cmph_structs.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c -o bmz.lo bmz.c mv -f .deps/vstack.Tpo .deps/vstack.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c -o bmz8.lo bmz8.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -fPIC -DPIC -o .libs/chm.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -fPIC -DPIC -o .libs/bmz8.o chm.c: In function 'chm_dump': chm.c:207:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 207 | register size_t nbytes; | ^~~~~~ chm.c: In function 'chm_load': chm.c:243:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 243 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -fPIC -DPIC -o .libs/bmz.o mv -f .deps/main.Tpo .deps/main.Po /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c -o bdz.lo bdz.c bmz8.c: In function 'bmz8_dump': bmz8.c:470:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 470 | register size_t nbytes; | ^~~~~~ bmz8.c: In function 'bmz8_load': bmz8.c:505:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 505 | register size_t nbytes; | ^~~~~~ mv -f .deps/hash.Tpo .deps/hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c -o bdz_ph.lo bdz_ph.c bmz.c: In function 'bmz_dump': bmz.c:462:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 462 | register size_t nbytes; | ^~~~~~ bmz.c: In function 'bmz_load': bmz.c:499:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 499 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -fPIC -DPIC -o .libs/bdz.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT jenkins_hash.lo -MD -MP -MF .deps/jenkins_hash.Tpo -c jenkins_hash.c -o jenkins_hash.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -fPIC -DPIC -o .libs/bdz_ph.o bdz.c: In function 'bdz_dump': bdz.c:502:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 502 | register size_t nbytes; | ^~~~~~ bdz.c: In function 'bdz_load': bdz.c:537:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 537 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o >/dev/null 2>&1 bdz_ph.c: In function 'bdz_ph_dump': bdz_ph.c:457:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 457 | register size_t nbytes; | ^~~~~~ bdz_ph.c: In function 'bdz_ph_load': bdz_ph.c:487:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 487 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph.lo -MD -MP -MF .deps/cmph.Tpo -c cmph.c -o cmph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chm.lo -MD -MP -MF .deps/chm.Tpo -c chm.c -o chm.o >/dev/null 2>&1 mv -f .deps/jenkins_hash.Tpo .deps/jenkins_hash.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c -o brz.lo brz.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -fPIC -DPIC -o .libs/brz.o mv -f .deps/graph.Tpo .deps/graph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c -o fch.lo fch.c brz.c: In function 'brz_gen_mphf': brz.c:249:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 249 | register size_t nbytes; | ^~~~~~ brz.c: In function 'brz_dump': brz.c:580:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 580 | register size_t nbytes; | ^~~~~~ brz.c: In function 'brz_load': brz.c:599:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 599 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -fPIC -DPIC -o .libs/fch.o fch.c: In function 'fch_dump': fch.c:319:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 319 | register size_t nbytes; | ^~~~~~ fch.c: In function 'fch_load': fch.c:355:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 355 | register size_t nbytes; | ^~~~~~ mv -f .deps/chm.Tpo .deps/chm.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c -o fch_buckets.lo fch_buckets.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -fPIC -DPIC -o .libs/fch_buckets.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz_ph.lo -MD -MP -MF .deps/bdz_ph.Tpo -c bdz_ph.c -o bdz_ph.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz.lo -MD -MP -MF .deps/bmz.Tpo -c bmz.c -o bmz.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bdz.lo -MD -MP -MF .deps/bdz.Tpo -c bdz.c -o bdz.o >/dev/null 2>&1 mv -f .deps/cmph.Tpo .deps/cmph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c -o chd.lo chd.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bmz8.lo -MD -MP -MF .deps/bmz8.Tpo -c bmz8.c -o bmz8.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -fPIC -DPIC -o .libs/chd.o chd.c: In function 'chd_load': chd.c:178:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 178 | register size_t nbytes; | ^~~~~~ chd.c: In function 'chd_dump': chd.c:197:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 197 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch_buckets.lo -MD -MP -MF .deps/fch_buckets.Tpo -c fch_buckets.c -o fch_buckets.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT fch.lo -MD -MP -MF .deps/fch.Tpo -c fch.c -o fch.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd.lo -MD -MP -MF .deps/chd.Tpo -c chd.c -o chd.o >/dev/null 2>&1 mv -f .deps/fch_buckets.Tpo .deps/fch_buckets.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c -o chd_ph.lo chd_ph.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -fPIC -DPIC -o .libs/chd_ph.o mv -f .deps/chd.Tpo .deps/chd.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c -o miller_rabin.lo miller_rabin.c mv -f .deps/bdz_ph.Tpo .deps/bdz_ph.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c -o buffer_manager.lo buffer_manager.c chd_ph.c: In function 'chd_ph_load': chd_ph.c:844:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 844 | register size_t nbytes; | ^~~~~~ chd_ph.c: In function 'chd_ph_dump': chd_ph.c:875:18: warning: variable 'nbytes' set but not used [-Wunused-but-set-variable] 875 | register size_t nbytes; | ^~~~~~ libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -fPIC -DPIC -o .libs/buffer_manager.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -fPIC -DPIC -o .libs/miller_rabin.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_manager.lo -MD -MP -MF .deps/buffer_manager.Tpo -c buffer_manager.c -o buffer_manager.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT brz.lo -MD -MP -MF .deps/brz.Tpo -c brz.c -o brz.o >/dev/null 2>&1 mv -f .deps/bmz.Tpo .deps/bmz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c -o buffer_entry.lo buffer_entry.c mv -f .deps/fch.Tpo .deps/fch.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c -o select.lo select.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -fPIC -DPIC -o .libs/buffer_entry.o mv -f .deps/buffer_manager.Tpo .deps/buffer_manager.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c -o compressed_seq.lo compressed_seq.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -fPIC -DPIC -o .libs/select.o mv -f .deps/bdz.Tpo .deps/bdz.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c -o compressed_rank.lo compressed_rank.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -fPIC -DPIC -o .libs/compressed_seq.o mv -f .deps/bmz8.Tpo .deps/bmz8.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c -o linear_string_map.lo linear_string_map.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT miller_rabin.lo -MD -MP -MF .deps/miller_rabin.Tpo -c miller_rabin.c -o miller_rabin.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -fPIC -DPIC -o .libs/compressed_rank.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -fPIC -DPIC -o .libs/linear_string_map.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT buffer_entry.lo -MD -MP -MF .deps/buffer_entry.Tpo -c buffer_entry.c -o buffer_entry.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT linear_string_map.lo -MD -MP -MF .deps/linear_string_map.Tpo -c linear_string_map.c -o linear_string_map.o >/dev/null 2>&1 mv -f .deps/buffer_entry.Tpo .deps/buffer_entry.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c -o cmph_benchmark.lo cmph_benchmark.c mv -f .deps/miller_rabin.Tpo .deps/miller_rabin.Plo gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT bm_numbers.o -MD -MP -MF .deps/bm_numbers.Tpo -c -o bm_numbers.o bm_numbers.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -fPIC -DPIC -o .libs/cmph_benchmark.o mv -f .deps/linear_string_map.Tpo .deps/linear_string_map.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -o select.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_rank.lo -MD -MP -MF .deps/compressed_rank.Tpo -c compressed_rank.c -o compressed_rank.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT compressed_seq.lo -MD -MP -MF .deps/compressed_seq.Tpo -c compressed_seq.c -o compressed_seq.o >/dev/null 2>&1 libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT cmph_benchmark.lo -MD -MP -MF .deps/cmph_benchmark.Tpo -c cmph_benchmark.c -o cmph_benchmark.o >/dev/null 2>&1 mv -f .deps/bm_numbers.Tpo .deps/bm_numbers.Po mv -f .deps/cmph_benchmark.Tpo .deps/cmph_benchmark.Plo mv -f .deps/select.Tpo .deps/select.Plo mv -f .deps/compressed_rank.Tpo .deps/compressed_rank.Plo libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT chd_ph.lo -MD -MP -MF .deps/chd_ph.Tpo -c chd_ph.c -o chd_ph.o >/dev/null 2>&1 mv -f .deps/compressed_seq.Tpo .deps/compressed_seq.Plo mv -f .deps/brz.Tpo .deps/brz.Plo mv -f .deps/chd_ph.Tpo .deps/chd_ph.Plo /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -version-info 0:0:0 -lm -o libcmph.la -rpath /project/cmph/lib hash.lo jenkins_hash.lo vstack.lo vqueue.lo graph.lo cmph.lo cmph_structs.lo chm.lo bmz.lo bmz8.lo bdz.lo bdz_ph.lo brz.lo fch.lo fch_buckets.lo chd.lo chd_ph.lo miller_rabin.lo buffer_manager.lo buffer_entry.lo select.lo compressed_seq.lo compressed_rank.lo linear_string_map.lo cmph_benchmark.lo
libtool: link: gcc -shared -fPIC -DPIC .libs/hash.o .libs/jenkins_hash.o .libs/vstack.o .libs/vqueue.o .libs/graph.o .libs/cmph.o .libs/cmph_structs.o .libs/chm.o .libs/bmz.o .libs/bmz8.o .libs/bdz.o .libs/bdz_ph.o .libs/brz.o .libs/fch.o .libs/fch_buckets.o .libs/chd.o .libs/chd_ph.o .libs/miller_rabin.o .libs/buffer_manager.o .libs/buffer_entry.o .libs/select.o .libs/compressed_seq.o .libs/compressed_rank.o .libs/linear_string_map.o .libs/cmph_benchmark.o -lm -g -O2 -Wl,-soname -Wl,libcmph.so.0 -o .libs/libcmph.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libcmph.so.0" && ln -s "libcmph.so.0.0.0" "libcmph.so.0") libtool: link: (cd ".libs" && rm -f "libcmph.so" && ln -s "libcmph.so.0.0.0" "libcmph.so") libtool: link: ar cru .libs/libcmph.a hash.o jenkins_hash.o vstack.o vqueue.o graph.o cmph.o cmph_structs.o chm.o bmz.o bmz8.o bdz.o bdz_ph.o brz.o fch.o fch_buckets.o chd.o chd_ph.o miller_rabin.o buffer_manager.o buffer_entry.o select.o compressed_seq.o compressed_rank.o linear_string_map.o cmph_benchmark.o ar:u' modifier ignored since
D' is the default (see `U') libtool: link: ranlib .libs/libcmph.a libtool: link: ( cd ".libs" && rm -f "libcmph.la" && ln -s "../libcmph.la" "libcmph.la" ) /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o cmph main.o wingetopt.o libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o bm_numbers bm_numbers.o libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/bm_numbers bm_numbers.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/cmph main.o wingetopt.o ./.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/src' Making all in tests make[2]: Entering directory '/project/cmph/cmph-2.0.2/tests' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT packed_mphf_tests.o -MD -MP -MF .deps/packed_mphf_tests.Tpo -c -o packed_mphf_tests.o packed_mphf_tests.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT mphf_tests.o -MD -MP -MF .deps/mphf_tests.Tpo -c -o mphf_tests.o mphf_tests.c mv -f .deps/mphf_tests.Tpo .deps/mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o mphf_tests mphf_tests.o ../src/libcmph.la mv -f .deps/packed_mphf_tests.Tpo .deps/packed_mphf_tests.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o packed_mphf_tests packed_mphf_tests.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/mphf_tests mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/packed_mphf_tests packed_mphf_tests.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/tests' Making all in examples make[2]: Entering directory '/project/cmph/cmph-2.0.2/examples' gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT vector_adapter_ex1.o -MD -MP -MF .deps/vector_adapter_ex1.Tpo -c -o vector_adapter_ex1.o vector_adapter_ex1.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT file_adapter_ex2.o -MD -MP -MF .deps/file_adapter_ex2.Tpo -c -o file_adapter_ex2.o file_adapter_ex2.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT struct_vector_adapter_ex3.o -MD -MP -MF .deps/struct_vector_adapter_ex3.Tpo -c -o struct_vector_adapter_ex3.o struct_vector_adapter_ex3.c gcc -DHAVE_CONFIG_H -I. -I.. -I../src/ -Wall -g -O2 -MT small_set_ex4.o -MD -MP -MF .deps/small_set_ex4.Tpo -c -o small_set_ex4.o small_set_ex4.c mv -f .deps/file_adapter_ex2.Tpo .deps/file_adapter_ex2.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o file_adapter_ex2 file_adapter_ex2.o ../src/libcmph.la mv -f .deps/struct_vector_adapter_ex3.Tpo .deps/struct_vector_adapter_ex3.Po mv -f .deps/vector_adapter_ex1.Tpo .deps/vector_adapter_ex1.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/libcmph.la /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o vector_adapter_ex1 vector_adapter_ex1.o ../src/libcmph.la mv -f .deps/small_set_ex4.Tpo .deps/small_set_ex4.Po /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -g -O2 -lm -o small_set_ex4 small_set_ex4.o ../src/libcmph.la libtool: link: gcc -Wall -g -O2 -o .libs/file_adapter_ex2 file_adapter_ex2.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/struct_vector_adapter_ex3 struct_vector_adapter_ex3.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/vector_adapter_ex1 vector_adapter_ex1.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib libtool: link: gcc -Wall -g -O2 -o .libs/small_set_ex4 small_set_ex4.o ../src/.libs/libcmph.so -lm -Wl,-rpath -Wl,/project/cmph/lib make[2]: Leaving directory '/project/cmph/cmph-2.0.2/examples' Making all in man make[2]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done for 'all'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[2]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Nothing to be done for 'all-am'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2' make[1]: Leaving directory '/project/cmph/cmph-2.0.2' Making install in src make[1]: Entering directory '/project/cmph/cmph-2.0.2/src' make[2]: Entering directory '/project/cmph/cmph-2.0.2/src' .././install-sh -c -d '/project/cmph/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libcmph.la '/project/cmph/lib' libtool: install: /usr/bin/install -c .libs/libcmph.so.0.0.0 /project/cmph/lib/libcmph.so.0.0.0 libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so.0 || { rm -f libcmph.so.0 && ln -s libcmph.so.0.0.0 libcmph.so.0; }; }) libtool: install: (cd /project/cmph/lib && { ln -s -f libcmph.so.0.0.0 libcmph.so || { rm -f libcmph.so && ln -s libcmph.so.0.0.0 libcmph.so; }; }) libtool: install: /usr/bin/install -c .libs/libcmph.lai /project/cmph/lib/libcmph.la libtool: install: /usr/bin/install -c .libs/libcmph.a /project/cmph/lib/libcmph.a libtool: install: chmod 644 /project/cmph/lib/libcmph.a libtool: install: ranlib /project/cmph/lib/libcmph.a libtool: finish: PATH="/opt/python/cp38-cp38/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /project/cmph/libLibraries have been installed in: /project/cmph/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following:
- add LIBDIR to the 'LD_LIBRARY_PATH' environment variable during execution
- add LIBDIR to the 'LD_RUN_PATH' environment variable during linking
- use the '-Wl,-rpath -Wl,LIBDIR' linker flag
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages.
.././install-sh -c -d '/project/cmph/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c cmph '/project/cmph/bin' libtool: install: /usr/bin/install -c .libs/cmph /project/cmph/bin/cmph .././install-sh -c -d '/project/cmph/include' /usr/bin/install -c -m 644 cmph.h cmph_types.h cmph_time.h chd_ph.h '/project/cmph/include' make[2]: Leaving directory '/project/cmph/cmph-2.0.2/src' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/src' Making install in tests make[1]: Entering directory '/project/cmph/cmph-2.0.2/tests' make[2]: Entering directory '/project/cmph/cmph-2.0.2/tests' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/tests' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/tests' Making install in examples make[1]: Entering directory '/project/cmph/cmph-2.0.2/examples' make[2]: Entering directory '/project/cmph/cmph-2.0.2/examples' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/project/cmph/cmph-2.0.2/examples' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/examples' Making install in man make[1]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Entering directory '/project/cmph/cmph-2.0.2/man' make[2]: Nothing to be done for 'install-exec-am'. .././install-sh -c -d '/project/cmph/share/man/man1' /usr/bin/install -c -m 644 cmph.1 '/project/cmph/share/man/man1' make[2]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[1]: Leaving directory '/project/cmph/cmph-2.0.2/man' make[1]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Entering directory '/project/cmph/cmph-2.0.2' make[2]: Nothing to be done for 'install-exec-am'. ./install-sh -c -d '/project/cmph/lib/pkgconfig' /usr/bin/install -c -m 644 cmph.pc '/project/cmph/lib/pkgconfig' make[2]: Leaving directory '/project/cmph/cmph-2.0.2' make[1]: Leaving directory '/project/cmph/cmph-2.0.2'
✓ 5.22s
Building cp37-musllinux_i686 wheel CPython 3.7 musllinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_i686.whl size=47611 sha256=e98562da3ad2e089d3676a660aa13e32a39e7ac985347d437c2749429ea87a4e Stored in directory: /tmp/pip-ephem-wheel-cache-tq8bwaxc/wheels/84/ce/ef/3768e7d143f298e3f79dda4c505f7ffa005f429720ee7533a3 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 12.19s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp37-cp37m-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp37-cp37m-musllinux_1_1_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-musllinux_1_1_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp37-cp37m-musllinux_1_1_i686.whl /output
✓ 0.67s
✓ cp37-musllinux_i686 finished in 12.98s
Building cp38-musllinux_i686 wheel CPython 3.8 musllinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_i686.whl size=48032 sha256=e4f4bcf2d94274a9e445e745101e23e2c807a2b33bc6556267608927bef8804a Stored in directory: /tmp/pip-ephem-wheel-cache-u1gy3vf1/wheels/d4/3a/c0/4dc152b1840724d5b992a8268bb4ef33fdbe42ffe1429b845c Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 10.82s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp38-cp38-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp38-cp38-musllinux_1_1_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-musllinux_1_1_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp38-cp38-musllinux_1_1_i686.whl /output
✓ 0.21s
✓ cp38-musllinux_i686 finished in 11.14s
Building cp39-musllinux_i686 wheel CPython 3.9 musllinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_i686.whl size=47626 sha256=218148b7b84f89084683e27f0793816f7e82955ffcc673b00ee2c4ae82dd2d1d Stored in directory: /tmp/pip-ephem-wheel-cache-ufj2qpsu/wheels/b1/d1/e9/62441f1a701c6dcdb0d9ccfd73a0bfbac93e8cf297e5312e15 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.50s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp39-cp39-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp39-cp39-musllinux_1_1_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-musllinux_1_1_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp39-cp39-musllinux_1_1_i686.whl /output
✓ 0.23s
✓ cp39-musllinux_i686 finished in 6.84s
Building cp310-musllinux_i686 wheel CPython 3.10 musllinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_i686.whl size=47623 sha256=af0398e16a0f7fbea9b9a4628fe8bcf2ee73217ee1ffbb85e3ac3573bde212ca Stored in directory: /tmp/pip-ephem-wheel-cache-pf59a86g/wheels/0a/fd/6e/ed6d1e02e17eb494db42d66b1007518be7f0a60e5b839ebd00 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.14s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp310-cp310-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp310-cp310-musllinux_1_1_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-musllinux_1_1_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp310-cp310-musllinux_1_1_i686.whl /output
✓ 0.20s
✓ cp310-musllinux_i686 finished in 6.46s
Building cp311-musllinux_i686 wheel CPython 3.11 musllinux i686
Setting up build environment...
+ /opt/python/cp38-cp38/bin/python -c 'import sys, json, os; json.dump(os.environ.copy(), sys.stdout)' + which python + which pip ✓ 0.02s
Building wheel...
+ rm -rf /tmp/cibuildwheel/built_wheel + mkdir -p /tmp/cibuildwheel/built_wheel + python -m pip wheel /project --wheel-dir=/tmp/cibuildwheel/built_wheel --no-deps
Processing /project Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Installing backend dependencies: started Installing backend dependencies: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Building wheels for collected packages: swh.perfecthash Building wheel for swh.perfecthash (pyproject.toml): started Building wheel for swh.perfecthash (pyproject.toml): finished with status 'done' Created wheel for swh.perfecthash: filename=swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_i686.whl size=47618 sha256=4b89ae01453798dab955e8e14546fbb1418915e08fc0d4733f45e121ef6737db Stored in directory: /tmp/pip-ephem-wheel-cache-lipazda6/wheels/aa/0c/49/7c4d39428e78274ff9f1db5b9c539aa0d6bd6becda70207fa7 Successfully built swh.perfecthash + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/built_wheel/*.whl'"'"'), sys.stdout)' + rm -rf /tmp/cibuildwheel/repaired_wheel + mkdir -p /tmp/cibuildwheel/repaired_wheel
✓ 6.43s
Repairing wheel...
+ sh -c 'auditwheel repair -w /tmp/cibuildwheel/repaired_wheel /tmp/cibuildwheel/built_wheel/swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-linux_i686.whl'
INFO:auditwheel.main_repair:Repairing swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-linux_i686.whl INFO:auditwheel.wheeltools:Previous filename tags: linux_i686 INFO:auditwheel.wheeltools:New filename tags: musllinux_1_1_i686 INFO:auditwheel.wheeltools:Previous WHEEL info tags: cp311-cp311-linux_i686 INFO:auditwheel.wheeltools:New WHEEL info tags: cp311-cp311-musllinux_1_1_i686 INFO:auditwheel.main_repair: Fixed-up wheel written to /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-musllinux_1_1_i686.whl + /opt/python/cp38-cp38/bin/python -c 'import sys, json, glob; json.dump(glob.glob('"'"'/tmp/cibuildwheel/repaired_wheel/*.whl'"'"'), sys.stdout)' + mkdir -p /output + mv /tmp/cibuildwheel/repaired_wheel/swh.perfecthash-0.1.3.dev18+g951bae4f-cp311-cp311-musllinux_1_1_i686.whl /output
✓ 0.21s
✓ cp311-musllinux_i686 finished in 6.76s Copying wheels back to host...
✓ 0.11s
26 wheels produced in 4 minutes: swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl 230 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 241 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-musllinux_1_1_i686.whl 225 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp310-cp310-musllinux_1_1_x86_64.whl 239 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl 231 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 241 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-musllinux_1_1_i686.whl 225 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp311-cp311-musllinux_1_1_x86_64.whl 239 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl 230 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 241 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-musllinux_1_1_i686.whl 225 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp37-cp37m-musllinux_1_1_x86_64.whl 239 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl 231 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 241 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-musllinux_1_1_i686.whl 225 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp38-cp38-musllinux_1_1_x86_64.whl 239 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl 230 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 240 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-musllinux_1_1_i686.whl 225 kB swh.perfecthash-0.1.3.dev18+g951bae4-cp39-cp39-musllinux_1_1_x86_64.whl 239 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl 212 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 219 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl 212 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 219 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl 212 kB swh.perfecthash-0.1.3.dev18+g951bae4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl 219 kB
- build_cmph.sh 0 → 100755
3 set -e 4 5 CMPH_VERSION=2.0.2 6 PREFIX="$(readlink -f $(dirname $0))/cmph" 7 8 rm -rf "$PREFIX" 9 mkdir "$PREFIX" 10 cd "$PREFIX" 11 wget https://deac-ams.dl.sourceforge.net/project/cmph/v${CMPH_VERSION}/cmph-${CMPH_VERSION}.tar.gz -O cmph.tar.gz 12 tar xf cmph.tar.gz 13 14 cd cmph-${CMPH_VERSION} 15 16 ./configure --prefix="$PREFIX" 17 make -j8 18 make install