oleynikandrey
4/7/2017 - 1:58 PM

tarantool docker build image fail

tarantool docker build image fail

Building tarantool                                                                                                                                                        
Step 1/22 : FROM alpine:3.5                                                                                                                                               
 ---> 4a415e366388                                                                                                                                                        
Step 2/22 : MAINTAINER mail@racktear.com                                                                                                                                  
 ---> Using cache                                                                                                                                                         
 ---> 5f623a950f0c                                                                                                                                                        
Step 3/22 : RUN addgroup -S tarantool     && adduser -S -G tarantool tarantool     && apk add --no-cache 'su-exec>=0.2'                                                   
 ---> Using cache                                                                                                                                                         
 ---> 6bd4ddbe9bc0                                                                                                                                                        
Step 4/22 : ENV TARANTOOL_VERSION 1.7.3-32-g0dd09b1 TARANTOOL_DOWNLOAD_URL https://github.com/tarantool/tarantool.git TARANTOOL_INSTALL_LUADIR /usr/local/share/tarantool 
PERFTOOLS_REPO https://github.com/gperftools/gperftools.git GPERFTOOLS_TAG gperftools-2.5 LUAROCKS_URL http://keplerproject.github.io/luarocks/releases/luarocks-2.3.0.tar
gz LUAROCK_AVRO_SCHEMA_REPO https://github.com/tarantool/avro-schema.git LUAROCK_AVRO_SCHEMA_TAG b49efa8 LUAROCK_EXPIRATIOND_REPO https://github.com/tarantool/expirationd
git LUAROCK_EXPIRATIOND_TAG 9ec22b6 LUAROCK_QUEUE_REPO https://github.com/tarantool/queue.git LUAROCK_QUEUE_TAG 24d730c LUAROCK_CONNPOOL_REPO https://github.com/tarantool
connpool.git LUAROCK_CONNPOOL_TAG 685af44 LUAROCK_SHARD_REPO https://github.com/tarantool/shard.git LUAROCK_SHARD_TAG 278b906 LUAROCK_HTTP_REPO https://github.com/taranto
l/http.git LUAROCK_HTTP_TAG 67d8a9b LUAROCK_PG_REPO https://github.com/tarantool/pg.git LUAROCK_PG_TAG 43a7130 LUAROCK_MYSQL_REPO https://github.com/tarantool/mysql.git L
AROCK_MYSQL_TAG 1c15d30 LUAROCK_MEMCACHED_REPO https://github.com/tarantool/memcached.git LUAROCK_MEMCACHED_TAG ba18746 LUAROCK_TARANTOOL_PROMETHEUS_REPO https://github.c
m/tarantool/prometheus.git LUAROCK_TARANTOOL_PROMETHEUS_TAG 0654304 LUAROCK_TARANTOOL_CURL_REPO https://github.com/tarantool/curl.git LUAROCK_TARANTOOL_CURL_TAG 2.2.7 LUA
OCK_MQTT_REPO https://github.com/tarantool/mqtt.git LUAROCK_MQTT_TAG 238fd2e LUAROCK_TARANTOOL_GIS_REPO https://github.com/tarantool/gis.git LUAROCK_TARANTOOL_GIS_TAG 252
9fc LUAROCK_GPERFTOOLS_REPO https://github.com/tarantool/gperftools.git LUAROCK_GPERFTOOLS_TAG 12a7ac2                                                                    
 ---> Using cache                                                                                                                                                         
 ---> 44defff3e70e                                                                                                                                                        
Step 5/22 : COPY gperftools_alpine.diff /                                                                                                                                 
 ---> 720e7d2d5cfe                                                                                                                                                        
Removing intermediate container e9c61e934975                                                                                                                              
Step 6/22 : RUN set -x     && apk add --no-cache --virtual .run-deps         libstdc++         readline         openssl         yaml         lz4         binutils         
curses         libgomp         lua         curl         tar         zip         libunwind     && apk add --no-cache --virtual .build-deps         perl         gcc        
g++         cmake         readline-dev         openssl-dev         yaml-dev         lz4-dev         binutils-dev         ncurses-dev         lua-dev         musl-dev     
   make         git         libunwind-dev         autoconf         automake         libtool         linux-headers         go     && : "---------- gperftools ----------"  
  && mkdir -p /usr/src/gperftools     && git clone "$GPERFTOOLS_REPO" /usr/src/gperftools     && git -C /usr/src/gperftools checkout "$GPERFTOOLS_TAG"     && (cd /usr/src
gperftools;         patch -p1 < /gperftools_alpine.diff;         rm /gperftools_alpine.diff;         ./autogen.sh;         ./configure;         make;         cp .libs/lib
rofiler.so* /usr/local/lib;)     && (GOPATH=/usr/src/go go get github.com/google/pprof;         cp /usr/src/go/bin/pprof /usr/local/bin)     && : "---------- tarantool --
-------"     && mkdir -p /usr/src/tarantool     && git clone "$TARANTOOL_DOWNLOAD_URL" /usr/src/tarantool     && git -C /usr/src/tarantool checkout "$TARANTOOL_VERSION"  
  && git -C /usr/src/tarantool submodule update --init --recursive     && (cd /usr/src/tarantool;        cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo             -DENABLE_BUND
ED_LIBYAML:BOOL=OFF             -DENABLE_BACKTRACE:BOOL=ON             -DENABLE_DIST:BOOL=ON             .)     && make -C /usr/src/tarantool -j    && make -C /usr/src/ta
antool install     && make -C /usr/src/tarantool clean     && : "---------- small ----------"     && (cd /usr/src/tarantool/src/lib/small;         cmake -DCMAKE_INSTALL_P
EFIX=/usr               -DCMAKE_INSTALL_LIBDIR=lib               -DCMAKE_BUILD_TYPE=RelWithDebInfo               .)     && make -C /usr/src/tarantool/src/lib/small     &&
make -C /usr/src/tarantool/src/lib/small install     && make -C /usr/src/tarantool/src/lib/small clean     && : "---------- msgpuck ----------"     && (cd /usr/src/tarant
ol/src/lib/msgpuck;         cmake -DCMAKE_INSTALL_PREFIX=/usr               -DCMAKE_INSTALL_LIBDIR=lib               -DCMAKE_BUILD_TYPE=RelWithDebInfo               .)   
 && make -C /usr/src/tarantool/src/lib/msgpuck     && make -C /usr/src/tarantool/src/lib/msgpuck install     && make -C /usr/src/tarantool/src/lib/msgpuck clean     && : 
---------- luarocks ----------"     && wget -O luarocks.tar.gz "$LUAROCKS_URL"     && mkdir -p /usr/src/luarocks     && tar -xzf luarocks.tar.gz -C /usr/src/luarocks --st
ip-components=1     && (cd /usr/src/luarocks;         ./configure;         make build;         make install)     && rm -r /usr/src/luarocks     && rm -rf /usr/src/taranto
l     && rm -rf /usr/src/gperftools     && rm -rf /usr/src/go     && : "---------- remove build deps ----------"     && apk del .build-deps                               
 ---> Running in 29ed1ecc804d                                                                                                                                             
+ apk add --no-cache --virtual .run-deps libstdc++ readline openssl yaml lz4 binutils ncurses libgomp lua curl tar zip libunwind                                          
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz                                                                                               
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/community/x86_64/APKINDEX.tar.gz                                                                                          
(1/26) Installing libgcc (6.2.1-r1)                                                                                                                                       
(2/26) Installing libstdc++ (6.2.1-r1)                                                                                                                                    
(3/26) Installing ncurses-terminfo-base (6.0-r7)                                                                                                                          
(4/26) Installing ncurses-terminfo (6.0-r7)                                                                                                                               
(5/26) Installing ncurses-libs (6.0-r7)                                                                                                                                   
(6/26) Installing readline (6.3.008-r4)                                                                                                                                   
(7/26) Installing libcrypto1.0 (1.0.2k-r0)                                                                                                                                
(8/26) Installing libssl1.0 (1.0.2k-r0)                                                                                                                                   
(9/26) Installing openssl (1.0.2k-r0)                                                                                                                                     
(10/26) Installing yaml (0.1.7-r0)                                                                                                                                        
(11/26) Installing lz4 (131-r0)                                                                                                                                           
(12/26) Installing binutils-libs (2.27-r0)                                                                                                                                
(13/26) Installing binutils (2.27-r0)                                                                                                                                     
(14/26) Installing ncurses (6.0-r7)                                                                                                                                       
(15/26) Installing libgomp (6.2.1-r1)                                                                                                                                     
(16/26) Installing lua5.1-libs (5.1.5-r2)                                                                                                                                 
(17/26) Installing lua5.1 (5.1.5-r2)                                                                                                                                      
(18/26) Installing lua (5.1.5-r4)                                                                                                                                         
(19/26) Installing ca-certificates (20161130-r1)                                                                                                                          
(20/26) Installing libssh2 (1.7.0-r2)                                                                                                                                     
(21/26) Installing libcurl (7.52.1-r2)                                                                                                                                    
(22/26) Installing curl (7.52.1-r2)                                                                                                                                       
(23/26) Installing tar (1.29-r1)                                                                                                                                          
(24/26) Installing zip (3.0-r4)                                                                                                                                           
(25/26) Installing libunwind (1.2_rc1-r0)                                                                                                                                 
(26/26) Installing .run-deps (0)                                                                                                                                          
Executing busybox-1.25.1-r0.trigger                                                                                                                                       
Executing ca-certificates-20161130-r1.trigger                                                                                                                             
OK: 28 MiB in 38 packages                                                                                                                                                 
+ apk add --no-cache --virtual .build-deps perl gcc g++ cmake readline-dev openssl-dev yaml-dev lz4-dev binutils-dev ncurses-dev lua-dev musl-dev make git libunwind-dev a
toconf automake libtool linux-headers go                                                                                                                                  
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz                                                                                               
fetch http://dl-cdn.alpinelinux.org/alpine/v3.5/community/x86_64/APKINDEX.tar.gz                                                                                          
(1/42) Installing perl (5.24.0-r0)                                                                                                                                        
(2/42) Installing gmp (6.1.1-r0)                                                                                                                                          
(3/42) Installing isl (0.17.1-r0)                                                                                                                                         
(4/42) Installing libatomic (6.2.1-r1)                                                                                                                                    
(5/42) Installing pkgconf (1.0.2-r0)                                                                                                                                      
(6/42) Installing mpfr3 (3.1.5-r0)                                                                                                                                        
(7/42) Installing mpc1 (1.0.3-r0)                                                                                                                                         
(8/42) Installing gcc (6.2.1-r1)                                                                                                                                          
(9/42) Installing musl-dev (1.1.15-r6)                                                                                                                                    
(10/42) Installing libc-dev (0.7-r1)                                                                                                                                      
(11/42) Installing g++ (6.2.1-r1)                                                                                                                                         
(12/42) Installing libattr (2.4.47-r4)                                                                                                                                    
(13/42) Installing libacl (2.2.52-r2)                                                                                                                                     
(14/42) Installing libbz2 (1.0.6-r5)                                                                                                                                      
(15/42) Installing expat (2.2.0-r0)                                                                                                                                       
(16/42) Installing xz-libs (5.2.2-r1)                                                                                                                                     
(17/42) Installing libarchive (3.2.2-r1)                                                                                                                                  
(18/42) Installing cmake (3.6.3-r0)                                                                                                                                       
(19/42) Installing readline-dev (6.3.008-r4)                                                                                                                              
(20/42) Installing zlib-dev (1.2.8-r2)                                                                                                                                    
(21/42) Installing openssl-dev (1.0.2k-r0)                                                                                                                                
(22/42) Installing yaml-dev (0.1.7-r0)                                                                                                                                    
(23/42) Installing lz4-dev (131-r0)                                                                                                                                       
(24/42) Installing binutils-dev (2.27-r0)                                                                                                                                 
(25/42) Installing ncurses-dev (6.0-r7)                                                                                                                                   
(26/42) Installing lua5.1-dev (5.1.5-r2)                                                                                                                                  
(27/42) Installing lua-dev (5.1.5-r4)                                                                                                                                     
(28/42) Installing make (4.2.1-r0)                                                                                                                                        
(29/42) Installing pcre (8.39-r0)                                                                                                                                         
(30/42) Installing git (2.11.1-r0)                                                                                                                                        
(31/42) Installing libexecinfo (1.1-r0)                                                                                                                                   
(32/42) Installing libexecinfo-dev (1.1-r0)                                                                                                                               
(33/42) Installing libunwind-dev (1.2_rc1-r0)                                                                                                                             
(34/42) Installing m4 (1.4.17-r1)                                                                                                                                         
(35/42) Installing autoconf (2.69-r0)                                                                                                                                     
(36/42) Installing automake (1.15-r0)                                                                                                                                     
(37/42) Installing bash (4.3.46-r5)                                                                                                                                       
Executing bash-4.3.46-r5.post-install                                                                                                                                     
(38/42) Installing libltdl (2.4.6-r1)                                                                                                                                     
(39/42) Installing libtool (2.4.6-r1)                                                                                                                                     
(40/42) Installing linux-headers (4.4.6-r1)                                                                                                                               
(41/42) Installing go (1.7.3-r0)                                                                                                                                          
(42/42) Installing .build-deps (0)                                                                                                                                        
Executing busybox-1.25.1-r0.trigger                                                                                                                                       
OK: 467 MiB in 80 packages                                                                                                                                                
+ : ---------- gperftools ----------                                                                                                                                      
+ mkdir -p /usr/src/gperftools                                                                                                                                            
+ git clone https://github.com/gperftools/gperftools.git /usr/src/gperftools                                                                                              
Cloning into '/usr/src/gperftools'...                                                                                                                                     
+ git -C /usr/src/gperftools checkout gperftools-2.5                                                                                                                      
Note: checking out 'gperftools-2.5'.                                                                                                                                      
                                                                                                                                                                          
You are in 'detached HEAD' state. You can look around, make experimental                                                                                                  
changes and commit them, and you can discard any commits you make in this                                                                                                 
state without impacting any branches by performing another checkout.                                                                                                      
                                                                                                                                                                          
If you want to create a new branch to retain commits you create, you may                                                                                                  
do so (now or later) by using -b with the checkout command again. Example:                                                                                                
                                                                                                                                                                          
  git checkout -b <new-branch-name>                                                                                                                                       
                                                                                                                                                                          
HEAD is now at 632de29... bumped version up to 2.5                                                                                                                        
+ cd /usr/src/gperftools                                                                                                                                                  
+ patch -p1                                                                                                                                                               
': No such file or directorylinux_syscall_support.h                                                                                                                       
patching file src/base/linux_syscall_support.h                                                                                                                            
+ rm /gperftools_alpine.diff                                                                                                                                              
+ ./autogen.sh                                                                                                                                                            
libtoolize: putting auxiliary files in '.'.                                                                                                                               
libtoolize: copying file './ltmain.sh'                                                                                                                                    
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.                                                                                                                 
libtoolize: copying file 'm4/libtool.m4'                                                                                                                                  
libtoolize: copying file 'm4/ltoptions.m4'                                                                                                                                
libtoolize: copying file 'm4/ltsugar.m4'                                                                                                                                  
libtoolize: copying file 'm4/ltversion.m4'                                                                                                                                
libtoolize: copying file 'm4/lt~obsolete.m4'                                                                                                                              
Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.               
configure.ac:55: installing './compile'                                                                                                                                   
configure.ac:20: installing './config.guess'                                                                                                                              
configure.ac:20: installing './config.sub'                                                                                                                                
configure.ac:21: installing './install-sh'                                                                                                                                
configure.ac:21: installing './missing'                                                                                                                                   
Makefile.am: installing './depcomp'                                                                                                                                       
parallel-tests: installing './test-driver'                                                                                                                                
+ ./configure                                                                                                                                                             
checking build system type... x86_64-unknown-linux-gnu                                                                                                                    
checking host system type... x86_64-unknown-linux-gnu                                                                                                                     
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 whether to enable maintainer-specific portions of Makefiles... no                                                                                                
checking for style of include used by make... GNU                                                                                                                         
checking for gcc... gcc                                                                                                                                                   
checking whether the C compiler works... yes                                                                                                                              
checking for C compiler default output file name... a.out                                                                                                                 
checking for suffix of executables...                                                                                                                                     
checking whether we are cross compiling... no                                                                                                                             
checking for suffix of object files... o                                                                                                                                  
checking whether we are using the GNU C compiler... yes                                                                                                                   
checking whether gcc accepts -g... yes                                                                                                                                    
checking for gcc option to accept ISO C89... none needed                                                                                                                  
checking whether gcc understands -c and -o together... yes                                                                                                                
checking dependency style of gcc... gcc3                                                                                                                                  
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 for gcc... (cached) gcc                                                                                                                                          
checking whether we are using the GNU C compiler... (cached) yes                                                                                                          
checking whether gcc accepts -g... (cached) yes                                                                                                                           
checking for gcc option to accept ISO C89... (cached) none needed                                                                                                         
checking whether gcc understands -c and -o together... (cached) yes                                                                                                       
checking dependency style of gcc... (cached) gcc3                                                                                                                         
checking how to run the C preprocessor... gcc -E                                                                                                                          
checking for objcopy... objcopy                                                                                                                                           
checking if objcopy supports -W... no                                                                                                                                     
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 whether ln -s works... yes                                                                                                                                       
checking the maximum length of command line arguments... 98304                                                                                                            
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop                                                  
checking how to convert x86_64-unknown-linux-gnu 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                                                                                                          
./configure: line 8362: /usr/bin/file: No such file or directory                                                                                                          
checking for mt... no                                                                                                                                                     
checking if : is a manifest tool... no                                                                                                                                    
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) 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 how to run the C++ preprocessor... g++ -E                                                                                                                        
checking for ld used by g++... /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 whether the g++ linker (/usr/x86_64-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/x86_64-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 for inline... inline                                                                                                                                             
checking for __attribute__... yes                                                                                                                                         
checking for ANSI C header files... (cached) yes                                                                                                                          
checking for __int64... no                                                                                                                                                
checking for struct mallinfo... no                                                                                                                                        
checking for Elf32_Versym... yes                                                                                                                                          
checking for sbrk... yes                                                                                                                                                  
checking for geteuid... yes                                                                                                                                               
checking for fork... yes                                                                                                                                                  
checking features.h usability... yes                                                                                                                                      
checking features.h presence... yes                                                                                                                                       
checking for features.h... yes                                                                                                                                            
checking malloc.h usability... yes                                                                                                                                        
checking malloc.h presence... yes                                                                                                                                         
checking for malloc.h... yes                                                                                                                                              
checking glob.h usability... yes                                                                                                                                          
checking glob.h presence... yes                                                                                                                                           
checking for glob.h... yes                                                                                                                                                
checking execinfo.h usability... yes                                                                                                                                      
checking execinfo.h presence... yes                                                                                                                                       
checking for execinfo.h... yes                                                                                                                                            
checking unwind.h usability... yes                                                                                                                                        
checking unwind.h presence... yes                                                                                                                                         
checking for unwind.h... yes                                                                                                                                              
checking sched.h usability... yes                                                                                                                                         
checking sched.h presence... yes                                                                                                                                          
checking for sched.h... yes                                                                                                                                               
checking conflict-signal.h usability... no                                                                                                                                
checking conflict-signal.h presence... no                                                                                                                                 
checking for conflict-signal.h... no                                                                                                                                      
checking sys/prctl.h usability... yes                                                                                                                                     
checking sys/prctl.h presence... yes                                                                                                                                      
checking for sys/prctl.h... yes                                                                                                                                           
checking linux/ptrace.h usability... yes                                                                                                                                  
checking linux/ptrace.h presence... yes                                                                                                                                   
checking for linux/ptrace.h... yes                                                                                                                                        
checking sys/syscall.h usability... yes                                                                                                                                   
checking sys/syscall.h presence... yes                                                                                                                                    
checking for sys/syscall.h... yes                                                                                                                                         
checking sys/socket.h usability... yes                                                                                                                                    
checking sys/socket.h presence... yes                                                                                                                                     
checking for sys/socket.h... yes                                                                                                                                          
checking sys/wait.h usability... yes                                                                                                                                      
checking sys/wait.h presence... yes                                                                                                                                       
checking for sys/wait.h... yes                                                                                                                                            
checking poll.h usability... yes                                                                                                                                          
checking poll.h presence... yes                                                                                                                                           
checking for poll.h... yes                                                                                                                                                
checking fcntl.h usability... yes                                                                                                                                         
checking fcntl.h presence... yes                                                                                                                                          
checking for fcntl.h... yes                                                                                                                                               
checking grp.h usability... yes                                                                                                                                           
checking grp.h presence... yes                                                                                                                                            
checking for grp.h... yes                                                                                                                                                 
checking pwd.h usability... yes                                                                                                                                           
checking pwd.h presence... yes                                                                                                                                            
checking for pwd.h... yes                                                                                                                                                 
checking sys/resource.h usability... yes                                                                                                                                  
checking sys/resource.h presence... yes                                                                                                                                   
checking for sys/resource.h... yes                                                                                                                                        
checking valgrind.h usability... no                                                                                                                                       
checking valgrind.h presence... no                                                                                                                                        
checking for valgrind.h... no                                                                                                                                             
checking sys/cdefs.h usability... no                                                                                                                                      
checking sys/cdefs.h presence... no                                                                                                                                       
checking for sys/cdefs.h... no                                                                                                                                            
checking for features.h... (cached) yes                                                                                                                                   
checking whether cfree is declared... no                                                                                                                                  
checking whether posix_memalign is declared... yes                                                                                                                        
checking whether memalign is declared... yes                                                                                                                              
checking whether valloc is declared... yes                                                                                                                                
checking whether pvalloc is declared... no                                                                                                                                
checking for stdlib.h... (cached) yes                                                                                                                                     
checking for unistd.h... (cached) yes                                                                                                                                     
checking for sys/param.h... yes                                                                                                                                           
checking for getpagesize... yes                                                                                                                                           
checking for working mmap... yes                                                                                                                                          
checking if int32_t is the same type as intptr_t... no                                                                                                                    
checking ucontext.h usability... yes                                                                                                                                      
checking ucontext.h presence... yes                                                                                                                                       
checking for ucontext.h... yes                                                                                                                                            
checking sys/ucontext.h usability... yes                                                                                                                                  
checking sys/ucontext.h presence... yes                                                                                                                                   
checking for sys/ucontext.h... yes                                                                                                                                        
checking cygwin/signal.h usability... no                                                                                                                                  
checking cygwin/signal.h presence... no                                                                                                                                   
checking for cygwin/signal.h... no                                                                                                                                        
checking how to access the program counter from a struct ucontext... uc_mcontext.gregs[REG_RIP]                                                                           
checking libunwind.h usability... yes                                                                                                                                     
checking libunwind.h presence... yes                                                                                                                                      
checking for libunwind.h... yes                                                                                                                                           
checking for backtrace in -lunwind... yes                                                                                                                                 
checking for x86 without frame pointers... yes                                                                                                                            
checking if the compiler supports -Wno-unused-result... yes                                                                                                               
configure: Will not build sized deallocation operators                                                                                                                    
checking if C++ compiler supports -fsized-deallocation... yes                                                                                                             
checking if target has _Unwind_Backtrace... yes                                                                                                                           
checking printf format code for printing a size_t and ssize_t... l                                                                                                        
checking for __builtin_stack_pointer()... no                                                                                                                              
checking for __builtin_expect()... yes                                                                                                                                    
checking for __environ... no                                                                                                                                              
checking for __thread... yes                                                                                                                                              
checking if __malloc_hook is declared volatile... yes                                                                                                                     
checking if nanosleep requires any libraries... no                                                                                                                        
checking whether uname is declared... yes                                                                                                                                 
checking for the pthreads library -lpthreads... no                                                                                                                        
checking whether pthreads work without any flags... yes                                                                                                                   
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE                                                                                                        
checking if more special flags are required for pthreads... no                                                                                                            
checking whether to check for GCC pthread/shared inconsistencies... yes                                                                                                   
checking whether -pthread is sufficient with -shared... yes                                                                                                               
checking whether what we have so far is sufficient with -nostdlib... yes                                                                                                  
checking whether pthread symbols are available in C++ without including pthread.h... yes                                                                                  
checking whether the compiler implements namespaces... yes                                                                                                                
checking what namespace STL code is in... std                                                                                                                             
checking for program_invocation_name... yes                                                                                                                               
checking for Linux SIGEV_THREAD_ID... no                                                                                                                                  
checking that generated files are newer than configure... done                                                                                                            
configure: creating ./config.status                                                                                                                                       
config.status: creating Makefile                                                                                                                                          
config.status: creating src/gperftools/tcmalloc.h                                                                                                                         
config.status: creating src/windows/gperftools/tcmalloc.h                                                                                                                 
config.status: creating src/config.h                                                                                                                                      
config.status: executing depfiles commands                                                                                                                                
config.status: executing libtool commands                                                                                                                                 
+ make                                                                                                                                                                    
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES  -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno
sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-buil
in-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -g -O2 -MT src/libtcmalloc_minimal_la-tcmalloc.lo -MD -MP -MF src/.deps/libtcm
lloc_minimal_la-tcmalloc.Tpo -c -o src/libtcmalloc_minimal_la-tcmalloc.lo `test -f 'src/tcmalloc.cc' || echo './'`src/tcmalloc.cc                                         
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fno-builtin-malloc
-fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-builtin-pvalloc -
no-unused-result -fsized-deallocation -DNO_FRAME_POINTER -g -O2 -MT src/libtcmalloc_minimal_la-tcmalloc.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_la-tcmalloc.Tpo -c sr
/tcmalloc.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_la-tcmalloc.o                                                                                                  
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fno-builtin-malloc
-fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-builtin-pvalloc -
no-unused-result -fsized-deallocation -DNO_FRAME_POINTER -g -O2 -MT src/libtcmalloc_minimal_la-tcmalloc.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_la-tcmalloc.Tpo -c sr
/tcmalloc.cc -o src/libtcmalloc_minimal_la-tcmalloc.o >/dev/null 2>&1                                                                                                     
mv -f src/.deps/libtcmalloc_minimal_la-tcmalloc.Tpo src/.deps/libtcmalloc_minimal_la-tcmalloc.Plo                                                                         
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
ommon.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-common.Tpo -c -o src/libtcmalloc_minimal_internal_la-common.lo `test -f 'src/common.cc' || echo './'`src/co
mon.cc                                                                                                                                                                    
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-common.lo -MD -MP -MF src/.deps/li
tcmalloc_minimal_internal_la-common.Tpo -c src/common.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-common.o                                               
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-common.lo -MD -MP -MF src/.deps/li
tcmalloc_minimal_internal_la-common.Tpo -c src/common.cc -o src/libtcmalloc_minimal_internal_la-common.o >/dev/null 2>&1                                                  
mv -f src/.deps/libtcmalloc_minimal_internal_la-common.Tpo src/.deps/libtcmalloc_minimal_internal_la-common.Plo                                                           
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
nternal_logging.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-internal_logging.Tpo -c -o src/libtcmalloc_minimal_internal_la-internal_logging.lo `test -f 'src/
nternal_logging.cc' || echo './'`src/internal_logging.cc                                                                                                                  
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-internal_logging.lo -MD -MP -MF sr
/.deps/libtcmalloc_minimal_internal_la-internal_logging.Tpo -c src/internal_logging.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-internal_logging.o       
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-internal_logging.lo -MD -MP -MF sr
/.deps/libtcmalloc_minimal_internal_la-internal_logging.Tpo -c src/internal_logging.cc -o src/libtcmalloc_minimal_internal_la-internal_logging.o >/dev/null 2>&1          
mv -f src/.deps/libtcmalloc_minimal_internal_la-internal_logging.Tpo src/.deps/libtcmalloc_minimal_internal_la-internal_logging.Plo                                       
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
ystem-alloc.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-system-alloc.Tpo -c -o src/libtcmalloc_minimal_internal_la-system-alloc.lo `test -f 'src/system-alloc
cc' || echo './'`src/system-alloc.cc                                                                                                                                      
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-system-alloc.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-system-alloc.Tpo -c src/system-alloc.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-system-alloc.o                       
src/system-alloc.cc:100:18: warning: 'bool {anonymous}::CheckAddressBits(uintptr_t) [with int ADDRESS_BITS = 64]' defined but not used [-Wunused-function]                
 template <> bool CheckAddressBits<8 * sizeof(void*)>(uintptr_t ptr) {                                                                                                    
                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                                                                                     
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-system-alloc.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-system-alloc.Tpo -c src/system-alloc.cc -o src/libtcmalloc_minimal_internal_la-system-alloc.o >/dev/null 2>&1                          
mv -f src/.deps/libtcmalloc_minimal_internal_la-system-alloc.Tpo src/.deps/libtcmalloc_minimal_internal_la-system-alloc.Plo                                               
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
emfs_malloc.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-memfs_malloc.Tpo -c -o src/libtcmalloc_minimal_internal_la-memfs_malloc.lo `test -f 'src/memfs_malloc
cc' || echo './'`src/memfs_malloc.cc                                                                                                                                      
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-memfs_malloc.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-memfs_malloc.Tpo -c src/memfs_malloc.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-memfs_malloc.o                       
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-memfs_malloc.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-memfs_malloc.Tpo -c src/memfs_malloc.cc -o src/libtcmalloc_minimal_internal_la-memfs_malloc.o >/dev/null 2>&1                          
mv -f src/.deps/libtcmalloc_minimal_internal_la-memfs_malloc.Tpo src/.deps/libtcmalloc_minimal_internal_la-memfs_malloc.Plo                                               
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
entral_freelist.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-central_freelist.Tpo -c -o src/libtcmalloc_minimal_internal_la-central_freelist.lo `test -f 'src/
entral_freelist.cc' || echo './'`src/central_freelist.cc                                                                                                                  
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-central_freelist.lo -MD -MP -MF sr
/.deps/libtcmalloc_minimal_internal_la-central_freelist.Tpo -c src/central_freelist.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-central_freelist.o       
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-central_freelist.lo -MD -MP -MF sr
/.deps/libtcmalloc_minimal_internal_la-central_freelist.Tpo -c src/central_freelist.cc -o src/libtcmalloc_minimal_internal_la-central_freelist.o >/dev/null 2>&1          
mv -f src/.deps/libtcmalloc_minimal_internal_la-central_freelist.Tpo src/.deps/libtcmalloc_minimal_internal_la-central_freelist.Plo                                       
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
age_heap.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-page_heap.Tpo -c -o src/libtcmalloc_minimal_internal_la-page_heap.lo `test -f 'src/page_heap.cc' || echo
'./'`src/page_heap.cc                                                                                                                                                     
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-page_heap.lo -MD -MP -MF src/.deps
libtcmalloc_minimal_internal_la-page_heap.Tpo -c src/page_heap.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-page_heap.o                                   
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-page_heap.lo -MD -MP -MF src/.deps
libtcmalloc_minimal_internal_la-page_heap.Tpo -c src/page_heap.cc -o src/libtcmalloc_minimal_internal_la-page_heap.o >/dev/null 2>&1                                      
mv -f src/.deps/libtcmalloc_minimal_internal_la-page_heap.Tpo src/.deps/libtcmalloc_minimal_internal_la-page_heap.Plo                                                     
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
ampler.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-sampler.Tpo -c -o src/libtcmalloc_minimal_internal_la-sampler.lo `test -f 'src/sampler.cc' || echo './'`sr
/sampler.cc                                                                                                                                                               
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-sampler.lo -MD -MP -MF src/.deps/l
btcmalloc_minimal_internal_la-sampler.Tpo -c src/sampler.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-sampler.o                                           
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-sampler.lo -MD -MP -MF src/.deps/l
btcmalloc_minimal_internal_la-sampler.Tpo -c src/sampler.cc -o src/libtcmalloc_minimal_internal_la-sampler.o >/dev/null 2>&1                                              
mv -f src/.deps/libtcmalloc_minimal_internal_la-sampler.Tpo src/.deps/libtcmalloc_minimal_internal_la-sampler.Plo                                                         
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
pan.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-span.Tpo -c -o src/libtcmalloc_minimal_internal_la-span.lo `test -f 'src/span.cc' || echo './'`src/span.cc   
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-span.lo -MD -MP -MF src/.deps/libt
malloc_minimal_internal_la-span.Tpo -c src/span.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-span.o                                                       
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-span.lo -MD -MP -MF src/.deps/libt
malloc_minimal_internal_la-span.Tpo -c src/span.cc -o src/libtcmalloc_minimal_internal_la-span.o >/dev/null 2>&1                                                          
mv -f src/.deps/libtcmalloc_minimal_internal_la-span.Tpo src/.deps/libtcmalloc_minimal_internal_la-span.Plo                                                               
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
tack_trace_table.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-stack_trace_table.Tpo -c -o src/libtcmalloc_minimal_internal_la-stack_trace_table.lo `test -f 's
c/stack_trace_table.cc' || echo './'`src/stack_trace_table.cc                                                                                                             
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-stack_trace_table.lo -MD -MP -MF s
c/.deps/libtcmalloc_minimal_internal_la-stack_trace_table.Tpo -c src/stack_trace_table.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-stack_trace_table.o   
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-stack_trace_table.lo -MD -MP -MF s
c/.deps/libtcmalloc_minimal_internal_la-stack_trace_table.Tpo -c src/stack_trace_table.cc -o src/libtcmalloc_minimal_internal_la-stack_trace_table.o >/dev/null 2>&1      
mv -f src/.deps/libtcmalloc_minimal_internal_la-stack_trace_table.Tpo src/.deps/libtcmalloc_minimal_internal_la-stack_trace_table.Plo                                     
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
tatic_vars.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-static_vars.Tpo -c -o src/libtcmalloc_minimal_internal_la-static_vars.lo `test -f 'src/static_vars.cc'
|| echo './'`src/static_vars.cc                                                                                                                                           
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-static_vars.lo -MD -MP -MF src/.de
s/libtcmalloc_minimal_internal_la-static_vars.Tpo -c src/static_vars.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-static_vars.o                           
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-static_vars.lo -MD -MP -MF src/.de
s/libtcmalloc_minimal_internal_la-static_vars.Tpo -c src/static_vars.cc -o src/libtcmalloc_minimal_internal_la-static_vars.o >/dev/null 2>&1                              
mv -f src/.deps/libtcmalloc_minimal_internal_la-static_vars.Tpo src/.deps/libtcmalloc_minimal_internal_la-static_vars.Plo                                                 
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
ymbolize.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-symbolize.Tpo -c -o src/libtcmalloc_minimal_internal_la-symbolize.lo `test -f 'src/symbolize.cc' || echo
'./'`src/symbolize.cc                                                                                                                                                     
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-symbolize.lo -MD -MP -MF src/.deps
libtcmalloc_minimal_internal_la-symbolize.Tpo -c src/symbolize.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-symbolize.o                                   
src/symbolize.cc: In member function 'int SymbolTable::Symbolize()':                                                                                                      
src/symbolize.cc:200:38: warning: missing sentinel in function call [-Wformat=]                                                                                           
              "--symbols", argv0, NULL);                                                                                                                                  
                                      ^                                                                                                                                   
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-symbolize.lo -MD -MP -MF src/.deps
libtcmalloc_minimal_internal_la-symbolize.Tpo -c src/symbolize.cc -o src/libtcmalloc_minimal_internal_la-symbolize.o >/dev/null 2>&1                                      
mv -f src/.deps/libtcmalloc_minimal_internal_la-symbolize.Tpo src/.deps/libtcmalloc_minimal_internal_la-symbolize.Plo                                                     
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
hread_cache.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-thread_cache.Tpo -c -o src/libtcmalloc_minimal_internal_la-thread_cache.lo `test -f 'src/thread_cache
cc' || echo './'`src/thread_cache.cc                                                                                                                                      
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-thread_cache.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-thread_cache.Tpo -c src/thread_cache.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-thread_cache.o                       
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-thread_cache.lo -MD -MP -MF src/.d
ps/libtcmalloc_minimal_internal_la-thread_cache.Tpo -c src/thread_cache.cc -o src/libtcmalloc_minimal_internal_la-thread_cache.o >/dev/null 2>&1                          
mv -f src/.deps/libtcmalloc_minimal_internal_la-thread_cache.Tpo src/.deps/libtcmalloc_minimal_internal_la-thread_cache.Plo                                               
/bin/bash ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I. -I./src  -I./src   -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverload
d-virtual -Wno-sign-compare -fno-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_mem
lign -fno-builtin-valloc -fno-builtin-pvalloc  -Wno-unused-result -fsized-deallocation  -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-
alloc_hook.lo -MD -MP -MF src/.deps/libtcmalloc_minimal_internal_la-malloc_hook.Tpo -c -o src/libtcmalloc_minimal_internal_la-malloc_hook.lo `test -f 'src/malloc_hook.cc'
|| echo './'`src/malloc_hook.cc                                                                                                                                           
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./src -I./src -DNO_TCMALLOC_SAMPLES -DNO_HEAP_CHECK -DNDEBUG -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare -fn
-builtin-malloc -fno-builtin-free -fno-builtin-realloc -fno-builtin-calloc -fno-builtin-cfree -fno-builtin-memalign -fno-builtin-posix_memalign -fno-builtin-valloc -fno-b
iltin-pvalloc -Wno-unused-result -fsized-deallocation -DNO_FRAME_POINTER -fno-exceptions -g -O2 -MT src/libtcmalloc_minimal_internal_la-malloc_hook.lo -MD -MP -MF src/.de
s/libtcmalloc_minimal_internal_la-malloc_hook.Tpo -c src/malloc_hook.cc  -fPIC -DPIC -o src/.libs/libtcmalloc_minimal_internal_la-malloc_hook.o                           
In file included from src/malloc_hook_mmap_linux.h:47:0,                                                                                                                  
                 from src/malloc_hook.cc:678:                                                                                                                             
src/base/linux_syscall_support.h:2437:37: error: '__off64_t' has not been declared                                                                                        
                                     __off64_t o) {                                                                                                                       
                                     ^~~~~~~~~                                                                                                                            
In file included from src/malloc_hook.cc:678:0:                                                                                                                           
src/malloc_hook_mmap_linux.h:59:39: error: '__off64_t' has not been declared                                                                                              
                               int fd, __off64_t offset) __THROW {                                                                                                        
                                       ^~~~~~~~~                                                                                                                          
src/malloc_hook_mmap_linux.h:155:24: error: '__off64_t' has not been declared                                                                                             
                int fd, __off64_t offset  ) __THROW                                                                                                                       
                        ^~~~~~~~~                                                                                                                                         
In file included from src/malloc_hook.cc:41:0:                                                                                                                            
src/malloc_hook_mmap_linux.h:154:9: error: conflicting declaration of C function 'void* mmap(void*, size_t, int, int, int, int)'                                          
   void* mmap64(void *start, size_t length, int prot, int flags,                                                                                                          
         ^                                                                                                                                                                
/usr/include/sys/mman.h:81:7: note: previous declaration 'void* mmap(void*, size_t, int, int, int, off_t)'                                                                
 void *mmap (void *, size_t, int, int, int, off_t);                                                                                                                       
       ^~~~                                                                                                                                                               
In file included from src/malloc_hook.cc:678:0:                                                                                                                           
src/malloc_hook_mmap_linux.h:157:9: error: conflicting declaration of C function 'void* mmap(void*, size_t, int, int, int, off_t)'                                        
   void* mmap(void *start, size_t length,int prot, int flags,                                                                                                             
         ^~~~                                                                                                                                                             
In file included from src/malloc_hook.cc:41:0:                                                                                                                            
src/malloc_hook_mmap_linux.h:154:9: note: previous declaration 'void* mmap(void*, size_t, int, int, int, int)'                                                            
   void* mmap64(void *start, size_t length, int prot, int flags,                                                                                                          
         ^                                                                                                                                                                
In file included from src/malloc_hook.cc:678:0:                                                                                                                           
src/malloc_hook_mmap_linux.h:170:33: error: '__off64_t' has not been declared                                                                                             
                         int fd, __off64_t offset) __THROW {                                                                                                              
                                 ^~~~~~~~~                                                                                                                                
src/malloc_hook_mmap_linux.h: In function 'void* mmap(void*, size_t, int, int, int, off_t)':                                                                              
src/malloc_hook_mmap_linux.h:183:18: error: conflicting declaration of C function 'void* mmap(void*, size_t, int, int, int, off_t)'                                       
 extern "C" void* mmap(void *start, size_t length, int prot, int flags,                                                                                                   
                  ^~~~                                                                                                                                                    
In file included from src/malloc_hook.cc:41:0:                                                                                                                            
src/malloc_hook_mmap_linux.h:169:18: note: previous declaration 'void* mmap(void*, size_t, int, int, int, int)'                                                           
 extern "C" void* mmap64(void *start, size_t length, int prot, int flags,                                                                                                 
                  ^                                                                                                                                                       
make: *** [Makefile:4730: src/libtcmalloc_minimal_internal_la-malloc_hook.lo] Error 1                                                                                     
+ cp .libs/libprofiler.so* /usr/local/lib                                                                                                                                 
cp: can't stat '.libs/libprofiler.so*': No such file or directory                                                                                                         
ERROR: Service 'tarantool' failed to build: The command '/bin/sh -c set -x     && apk add --no-cache --virtual .run-deps         libstdc++         readline         openss
         yaml         lz4         binutils         ncurses         libgomp         lua         curl         tar         zip         libunwind     && apk add --no-cache --
irtual .build-deps         perl         gcc         g++         cmake         readline-dev         openssl-dev         yaml-dev         lz4-dev         binutils-dev      
  ncurses-dev         lua-dev         musl-dev         make         git         libunwind-dev         autoconf         automake         libtool         linux-headers     
   go     && : "---------- gperftools ----------"     && mkdir -p /usr/src/gperftools     && git clone "$GPERFTOOLS_REPO" /usr/src/gperftools     && git -C /usr/src/gperf
ools checkout "$GPERFTOOLS_TAG"     && (cd /usr/src/gperftools;         patch -p1 < /gperftools_alpine.diff;         rm /gperftools_alpine.diff;         ./autogen.sh;    
    ./configure;         make;         cp .libs/libprofiler.so* /usr/local/lib;)     && (GOPATH=/usr/src/go go get github.com/google/pprof;         cp /usr/src/go/bin/ppr
f /usr/local/bin)     && : "---------- tarantool ----------"     && mkdir -p /usr/src/tarantool     && git clone "$TARANTOOL_DOWNLOAD_URL" /usr/src/tarantool     && git -
 /usr/src/tarantool checkout "$TARANTOOL_VERSION"     && git -C /usr/src/tarantool submodule update --init --recursive     && (cd /usr/src/tarantool;        cmake -DCMAKE
BUILD_TYPE=RelWithDebInfo             -DENABLE_BUNDLED_LIBYAML:BOOL=OFF             -DENABLE_BACKTRACE:BOOL=ON             -DENABLE_DIST:BOOL=ON             .)     && mak
 -C /usr/src/tarantool -j    && make -C /usr/src/tarantool install     && make -C /usr/src/tarantool clean     && : "---------- small ----------"     && (cd /usr/src/tara
tool/src/lib/small;         cmake -DCMAKE_INSTALL_PREFIX=/usr               -DCMAKE_INSTALL_LIBDIR=lib               -DCMAKE_BUILD_TYPE=RelWithDebInfo               .)   
 && make -C /usr/src/tarantool/src/lib/small     && make -C /usr/src/tarantool/src/lib/small install     && make -C /usr/src/tarantool/src/lib/small clean     && : "-----
---- msgpuck ----------"     && (cd /usr/src/tarantool/src/lib/msgpuck;         cmake -DCMAKE_INSTALL_PREFIX=/usr               -DCMAKE_INSTALL_LIBDIR=lib               -
CMAKE_BUILD_TYPE=RelWithDebInfo               .)     && make -C /usr/src/tarantool/src/lib/msgpuck     && make -C /usr/src/tarantool/src/lib/msgpuck install     && make -
 /usr/src/tarantool/src/lib/msgpuck clean     && : "---------- luarocks ----------"     && wget -O luarocks.tar.gz "$LUAROCKS_URL"     && mkdir -p /usr/src/luarocks     &
 tar -xzf luarocks.tar.gz -C /usr/src/luarocks --strip-components=1     && (cd /usr/src/luarocks;         ./configure;         make build;         make install)     && rm
-r /usr/src/luarocks     && rm -rf /usr/src/tarantool     && rm -rf /usr/src/gperftools     && rm -rf /usr/src/go     && : "---------- remove build deps ----------"     &
 apk del .build-deps' returned a non-zero code: 1