Tengine-2.4.0编译安装

官方地址收集


  • nginx官方安装地址 https://docs.nginx.com/nginx/admin-guide/installing-nginx/installing-nginx-open-source/#installing-nginx-dependencies
  • nginx官方模块地址 https://www.nginx.com/nginx-wiki/build/dirhtml/modules/
  • nginx官方模块地址 https://www.nginx.com/products/nginx/modules/
  • nginx官方编译构建参数 https://nginx.org/en/docs/configure.html
  • tengine官方文档  http://tengine.taobao.org/documentation.html
  • tengine官方代码地址 https://github.com/alibaba/tengine

tengine编译安装


软件下载

  1. 打开tengine官方Github地址
    [root@test-a11-nginx-33-101 ~]# git clone https://github.com/alibaba/tengine.git
    Cloning into 'tengine'...
    remote: Enumerating objects: 53225, done.
    remote: Counting objects: 100% (576/576), done.
    remote: Compressing objects: 100% (394/394), done.
    remote: Total 53225 (delta 216), reused 438 (delta 181), pack-reused 52649
    Receiving objects: 100% (53225/53225), 22.47 MiB | 2.92 MiB/s, done.
    Resolving deltas: 100% (31106/31106), done.

编译环境准备

  1.  安装编译环境需要的软件包

    yum -y install gcc gcc-c++ bzip2 perl curl curl-devel expat-devel gettext-devel openssl-devel libxml2 libxml2-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel autoconf  gd-devel GeoIP GeoIP-devel GeoIP-data pcre pcre-devel  pcre2 pcre2-devel vim git wget make lrzsz
  2. --with-openssl
    [root@test-a11-nginx-33-101 tengine]# wget --no-check-certificate http://www.openssl.org/source/openssl-1.1.1p.tar.gz
    --2023-03-05 14:00:08--  http://www.openssl.org/source/openssl-1.1.1p.tar.gz
    Resolving izone.asiaidols.top (izone.asiaidols.top)... 193.122.113.190
    Connecting to izone.asiaidols.top (izone.asiaidols.top)|193.122.113.190|:1087... connected.
    Proxy request sent, awaiting response... 301 Moved Permanently
    Location: https://www.openssl.org/source/openssl-1.1.1p.tar.gz [following]
    --2023-03-05 14:00:09--  https://www.openssl.org/source/openssl-1.1.1p.tar.gz
    Connecting to izone.asiaidols.top (izone.asiaidols.top)|193.122.113.190|:1087... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: 9860217 (9.4M) [application/x-gzip]
    Saving to: 'openssl-1.1.1p.tar.gz'
    
    100%[==================================================================================================================================================================>] 9,860,217   4.87MB/s   in 1.9s
    
    2023-03-05 14:00:13 (4.87 MB/s) - 'openssl-1.1.1p.tar.gz' saved [9860217/9860217]
    
    [root@test-a11-nginx-33-101 tengine]# tar -zxvf openssl-1.1.1p.tar.gz
    [root@test-a11-nginx-33-101 openssl-1.1.1p]# ./configure --prefix=/usr
    Configuring OpenSSL version 1.1.1p (0x1010110fL) for darwin64-x86_64-cc
    Using os-specific seed configuration
    Creating configdata.pm
    Creating Makefile
    
    **********************************************************************
    ***                                                                ***
    ***   OpenSSL has been successfully configured                     ***
    ***                                                                ***
    ***   If you encounter a problem while building, please open an    ***
    ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
    ***   and include the output from the following command:           ***
    ***                                                                ***
    ***       perl configdata.pm --dump                                ***
    ***                                                                ***
    ***   (If you are new to OpenSSL, you might want to consult the    ***
    ***   'Troubleshooting' section in the INSTALL file first)         ***
    ***                                                                ***
    **********************************************************************
    
    [root@test-a11-nginx-33-101 openssl-1.1.1p]# make -j8
    [root@test-a11-nginx-33-101 openssl-1.1.1p]# make install && cd ..
  3. --with-zlib
    [root@test-a11-nginx-33-101 tengine]# wget http://zlib.net/zlib-1.2.13.tar.gz
    --2023-03-05 14:21:59--  http://zlib.net/zlib-1.2.13.tar.gz
    Resolving izone.asiaidols.top (izone.asiaidols.top)... 193.122.113.190
    Connecting to izone.asiaidols.top (izone.asiaidols.top)|193.122.113.190|:1087... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: 1497445 (1.4M) [application/x-gzip]
    Saving to: 'zlib-1.2.13.tar.gz'
    
    100%[==================================================================================================================================================================>] 1,497,445    142KB/s   in 6.7s
    
    2023-03-05 14:22:07 (219 KB/s) - 'zlib-1.2.13.tar.gz' saved [1497445/1497445]
    
    [root@test-a11-nginx-33-101 tengine]# tar -zxvf zlib-1.2.13.tar.gz && cd zlib-1.2.13
    [root@test-a11-nginx-33-101 zlib-1.2.13]# ./configure && make -j8
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o example.o test/example.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o adler32.o adler32.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o crc32.o crc32.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o deflate.o deflate.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o infback.o infback.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inffast.o inffast.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inflate.o inflate.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o inftrees.o inftrees.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o trees.o trees.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o zutil.o zutil.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o compress.o compress.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o uncompr.o uncompr.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzclose.o gzclose.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzlib.o gzlib.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzread.o gzread.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -c -o gzwrite.o gzwrite.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o minigzip.o test/minigzip.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/adler32.o adler32.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/crc32.o crc32.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/deflate.o deflate.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/infback.o infback.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/inffast.o inffast.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/inflate.o inflate.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/inftrees.o inftrees.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/trees.o trees.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/zutil.o zutil.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/uncompr.o uncompr.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/compress.o compress.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/gzclose.o gzclose.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/gzlib.o gzlib.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/gzread.o gzread.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o example64.o test/example.c
    gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN  -DPIC -c -o objs/gzwrite.o gzwrite.c
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -D_FILE_OFFSET_BITS=64 -c -o minigzip64.o test/minigzip.c
    ar rc libz.a adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o compress.o uncompr.o gzclose.o gzlib.o gzread.o gzwrite.o
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example example.o  -L. libz.a
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip minigzip.o  -L. libz.a
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzip64 minigzip64.o  -L. libz.a
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o example64 example64.o  -L. libz.a
    gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o libz.so.1.2.13 adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo compress.lo uncompr.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo  -lc
    rm -f libz.so libz.so.1
    ln -s libz.so.1.2.13 libz.so
    ln -s libz.so.1.2.13 libz.so.1
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o examplesh example.o  -L. libz.so.1.2.13
    gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -o minigzipsh minigzip.o  -L. libz.so.1.2.13
    [root@test-a11-nginx-33-101 zlib-1.2.13]# make install && cd ..
    rm -f /usr/local/lib/libz.a
    cp libz.a /usr/local/lib
    chmod 644 /usr/local/lib/libz.a
    cp libz.so.1.2.13 /usr/local/lib
    chmod 755 /usr/local/lib/libz.so.1.2.13
    rm -f /usr/local/share/man/man3/zlib.3
    cp zlib.3 /usr/local/share/man/man3
    chmod 644 /usr/local/share/man/man3/zlib.3
    rm -f /usr/local/lib/pkgconfig/zlib.pc
    cp zlib.pc /usr/local/lib/pkgconfig
    chmod 644 /usr/local/lib/pkgconfig/zlib.pc
    rm -f /usr/local/include/zlib.h /usr/local/include/zconf.h
    cp zlib.h zconf.h /usr/local/include
    chmod 644 /usr/local/include/zlib.h /usr/local/include/zconf.h
  4. nginx-module-vts
    [root@test-a11-nginx-33-101 tengine]# git clone https://github.com/vozlt/nginx-module-vts.git
    Cloning into 'nginx-module-vts'...
    remote: Enumerating objects: 1011, done.
    remote: Counting objects: 100% (208/208), done.
    remote: Compressing objects: 100% (67/67), done.
    remote: Total 1011 (delta 158), reused 156 (delta 139), pack-reused 803
    Receiving objects: 100% (1011/1011), 1.13 MiB | 1006.00 KiB/s, done.
    Resolving deltas: 100% (682/682), done.
  5. ngx_cache_purge
    [root@test-a11-nginx-33-101 modules]# git clone https://github.com/FRiCKLE/ngx_cache_purge.git
    Cloning into 'ngx_cache_purge'...
    remote: Enumerating objects: 212, done.
    remote: Total 212 (delta 0), reused 0 (delta 0), pack-reused 212
    Receiving objects: 100% (212/212), 64.01 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (116/116), done.
  6. nginx-upload-progress-module
    [root@test-a11-nginx-33-101 modules]# git clone https://github.com/masterzen/nginx-upload-progress-module.git
    Cloning into 'nginx-upload-progress-module'...
    remote: Enumerating objects: 301, done.
    remote: Counting objects: 100% (4/4), done.
    remote: Compressing objects: 100% (4/4), done.
    remote: Total 301 (delta 0), reused 1 (delta 0), pack-reused 297
    Receiving objects: 100% (301/301), 109.06 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (169/169), done.
  7. headers-more-nginx-module
    [root@test-a11-nginx-33-101 modules]# git clone https://github.com/openresty/headers-more-nginx-module.git
    Cloning into 'headers-more-nginx-module'...
    remote: Enumerating objects: 1456, done.
    remote: Counting objects: 100% (52/52), done.
    remote: Compressing objects: 100% (32/32), done.
    remote: Total 1456 (delta 30), reused 34 (delta 18), pack-reused 1404
    Receiving objects: 100% (1456/1456), 524.43 KiB | 349.00 KiB/s, done.
    Resolving deltas: 100% (791/791), done.
  8. ngx_devel_kit
    [root@test-a11-nginx-33-101 modules]# git clone https://github.com/vision5/ngx_devel_kit.git
    Cloning into 'ngx_devel_kit'...
    remote: Enumerating objects: 628, done.
    remote: Counting objects: 100% (6/6), done.
    remote: Compressing objects: 100% (6/6), done.
    remote: Total 628 (delta 0), reused 2 (delta 0), pack-reused 622
    Receiving objects: 100% (628/628), 166.70 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (314/314), done.
  9. LuaJit
    [root@151c73da6a2f modules]# git clone https://github.com/LuaJIT/LuaJIT.git
    [root@151c73da6a2f LuaJIT]# cd LuaJIT && git checkout -b v2.0.5 remotes/origin/v2.0
    [root@test-a11-nginx-33-101 LuaJIT]# make -j5 ==== Building LuaJIT 2.0.5 ==== make -C src make[1]: Entering directory `/root/tengine/modules/LuaJIT/src' HOSTCC host/minilua.o HOSTCC host/buildvm_asm.o HOSTCC host/buildvm_peobj.o HOSTCC host/buildvm_fold.o HOSTCC host/buildvm_lib.o CC lj_gc.o CC lj_char.o CC lj_obj.o CC lj_str.o CC lj_tab.o CC lj_func.o CC lj_udata.o CC lj_meta.o CC lj_debug.o CC lj_state.o CC lj_vmevent.o CC lj_vmmath.o CC lj_strscan.o CC lj_api.o CC lj_lex.o CC lj_parse.o CC lj_bcread.o CC lj_bcwrite.o CC lj_load.o CC lj_ir.o CC lj_opt_mem.o CC lj_opt_narrow.o CC lj_opt_dce.o CC lj_opt_loop.o CC lj_opt_split.o CC lj_opt_sink.o CC lj_mcode.o CC lj_snap.o CC lj_asm.o CC lj_trace.o CC lj_gdbjit.o CC lj_ctype.o CC lj_cdata.o CC lj_cconv.o CC lj_ccall.o CC lj_ccallback.o CC lj_carith.o CC lj_clib.o CC lj_cparse.o CC lj_lib.o CC lj_alloc.o CC lib_aux.o CC lib_package.o CC lib_init.o CC luajit.o HOSTLINK host/minilua DYNASM host/buildvm_arch.h HOSTCC host/buildvm.o HOSTLINK host/buildvm BUILDVM lj_vm.s BUILDVM lj_ffdef.h BUILDVM lj_bcdef.h BUILDVM lj_folddef.h BUILDVM lj_recdef.h BUILDVM lj_libdef.h BUILDVM jit/vmdef.lua ASM lj_vm.o CC lj_bc.o CC lj_err.o CC lj_dispatch.o CC lj_record.o CC lj_crecord.o CC lj_ffrecord.o CC lib_base.o CC lib_math.o CC lib_bit.o CC lib_string.o CC lib_table.o CC lib_io.o CC lib_os.o CC lib_debug.o CC lib_jit.o CC lib_ffi.o CC lj_opt_fold.o AR libluajit.a DYNLINK libluajit.so LINK luajit OK Successfully built LuaJIT make[1]: Leaving directory `/root/tengine/modules/LuaJIT/src' ==== Successfully built LuaJIT 2.0.5 ==== [root@test-a11-nginx-33-101 LuaJIT]# make install && cd .. ==== Installing LuaJIT 2.0.5 to /usr/local ==== mkdir -p /usr/local/bin /usr/local/lib /usr/local/include/luajit-2.0 /usr/local/share/man/man1 /usr/local/lib/pkgconfig /usr/local/share/luajit-2.0.5/jit /usr/local/share/lua/5.1 /usr/local/lib/lua/5.1 cd src && install -m 0755 luajit /usr/local/bin/luajit-2.0.5 cd src && test -f libluajit.a && install -m 0644 libluajit.a /usr/local/lib/libluajit-5.1.a || : rm -f /usr/local/bin/luajit /usr/local/lib/libluajit-5.1.so.2.0.5 /usr/local/lib/libluajit-5.1.so /usr/local/lib/libluajit-5.1.so.2 cd src && test -f libluajit.so && \ install -m 0755 libluajit.so /usr/local/lib/libluajit-5.1.so.2.0.5 && \ ldconfig -n /usr/local/lib && \ ln -sf libluajit-5.1.so.2.0.5 /usr/local/lib/libluajit-5.1.so && \ ln -sf libluajit-5.1.so.2.0.5 /usr/local/lib/libluajit-5.1.so.2 || : cd etc && install -m 0644 luajit.1 /usr/local/share/man/man1 cd etc && sed -e "s|^prefix=.*|prefix=/usr/local|" -e "s|^multilib=.*|multilib=lib|" luajit.pc > luajit.pc.tmp && \ install -m 0644 luajit.pc.tmp /usr/local/lib/pkgconfig/luajit.pc && \ rm -f luajit.pc.tmp cd src && install -m 0644 lua.h lualib.h lauxlib.h luaconf.h lua.hpp luajit.h /usr/local/include/luajit-2.0 cd src/jit && install -m 0644 bc.lua v.lua dump.lua dis_x86.lua dis_x64.lua dis_arm.lua dis_ppc.lua dis_mips.lua dis_mipsel.lua bcsave.lua vmdef.lua /usr/local/share/luajit-2.0.5/jit ln -sf luajit-2.0.5 /usr/local/bin/luajit ==== Successfully installed LuaJIT 2.0.5 to /usr/local ====
  10. luajit2
    ## 如果安装的lua-nginx-module 是 v.0.10.23版本
    ## 需要luajit2.1版本支持
    
    ## 下载luajia2 https://github.com/openresty/luajit2.git
    git clone https://github.com/openresty/luajit2.git
    
    [root@ffe99b00c85d luajit2]# make -j4
    ==== Building LuaJIT 2.1.0-beta3 ====
    make -C src
    make[1]: Entering directory `/root/tengine/modules/luajit2/src'
    CC        lj_init.o
    HOSTCC    host/minilua.o
    HOSTCC    host/buildvm_asm.o
    HOSTCC    host/buildvm_peobj.o
    HOSTCC    host/buildvm_lib.o
    HOSTCC    host/buildvm_fold.o
    CC        lj_assert.o
    CC        lj_gc.o
    CC        lj_char.o
    CC        lj_obj.o
    CC        lj_buf.o
    CC        lj_str.o
    CC        lj_tab.o
    CC        lj_func.o
    CC        lj_udata.o
    CC        lj_meta.o
    CC        lj_debug.o
    CC        lj_prng.o
    CC        lj_state.o
    CC        lj_vmevent.o
    CC        lj_vmmath.o
    CC        lj_strscan.o
    CC        lj_strfmt.o
    CC        lj_strfmt_num.o
    CC        lj_serialize.o
    CC        lj_api.o
    CC        lj_profile.o
    CC        lj_lex.o
    CC        lj_parse.o
    CC        lj_bcread.o
    CC        lj_bcwrite.o
    CC        lj_load.o
    CC        lj_ir.o
    CC        lj_opt_mem.o
    CC        lj_opt_narrow.o
    CC        lj_opt_dce.o
    CC        lj_opt_loop.o
    CC        lj_opt_split.o
    CC        lj_opt_sink.o
    CC        lj_mcode.o
    CC        lj_snap.o
    CC        lj_asm.o
    CC        lj_trace.o
    CC        lj_gdbjit.o
    CC        lj_ctype.o
    CC        lj_cdata.o
    CC        lj_cconv.o
    CC        lj_ccall.o
    CC        lj_ccallback.o
    CC        lj_carith.o
    CC        lj_clib.o
    CC        lj_cparse.o
    CC        lj_lib.o
    CC        lj_alloc.o
    CC        lib_aux.o
    CC        lib_package.o
    CC        lib_init.o
    CC        lj_str_hash.o
    CC        luajit.o
    HOSTLINK  host/minilua
    DYNASM    host/buildvm_arch.h
    HOSTCC    host/buildvm.o
    HOSTLINK  host/buildvm
    BUILDVM   lj_ffdef.h
    BUILDVM   lj_vm.S
    BUILDVM   lj_bcdef.h
    BUILDVM   lj_folddef.h
    BUILDVM   lj_recdef.h
    BUILDVM   lj_libdef.h
    BUILDVM   jit/vmdef.lua
    ASM       lj_vm.o
    CC        lj_err.o
    CC        lj_bc.o
    CC        lj_dispatch.o
    CC        lj_record.o
    CC        lj_crecord.o
    CC        lj_ffrecord.o
    CC        lib_base.o
    CC        lib_math.o
    CC        lib_bit.o
    CC        lib_string.o
    CC        lib_table.o
    CC        lib_io.o
    CC        lib_os.o
    CC        lib_debug.o
    CC        lib_jit.o
    CC        lib_ffi.o
    CC        lib_buffer.o
    CC        lj_opt_fold.o
    AR        libluajit.a
    DYNLINK   libluajit.so
    LINK      luajit
    OK        Successfully built LuaJIT
    make[1]: Leaving directory `/root/tengine/modules/luajit2/src'
    ==== Successfully built LuaJIT 2.1.0-beta3 ====
    [root@ffe99b00c85d luajit2]# make install
    ==== Installing LuaJIT 2.1.0-beta3 to /usr/local ====
    mkdir -p /usr/local/bin /usr/local/lib /usr/local/include/luajit-2.1 /usr/local/share/man/man1 /usr/local/lib/pkgconfig /usr/local/share/luajit-2.1.0-beta3/jit /usr/local/share/lua/5.1 /usr/local/lib/lua/5.1
    cd src && install -m 0755 luajit /usr/local/bin/luajit-2.1.0-beta3
    cd src && test -f libluajit.a && install -m 0644 libluajit.a /usr/local/lib/libluajit-5.1.a || :
    rm -f /usr/local/lib/libluajit-5.1.so.2.1.0 /usr/local/lib/libluajit-5.1.so /usr/local/lib/libluajit-5.1.so.2
    cd src && test -f libluajit.so && \
      install -m 0755 libluajit.so /usr/local/lib/libluajit-5.1.so.2.1.0 && \
      ( ldconfig -n 2>/dev/null /usr/local/lib || : ) && \
      ln -sf libluajit-5.1.so.2.1.0 /usr/local/lib/libluajit-5.1.so && \
      ln -sf libluajit-5.1.so.2.1.0 /usr/local/lib/libluajit-5.1.so.2 || :
    cd etc && install -m 0644 luajit.1 /usr/local/share/man/man1
    cd etc && sed -e "s|^prefix=.*|prefix=/usr/local|" -e "s|^multilib=.*|multilib=lib|" luajit.pc > luajit.pc.tmp && \
      install -m 0644 luajit.pc.tmp /usr/local/lib/pkgconfig/luajit.pc && \
      rm -f luajit.pc.tmp
    cd src && install -m 0644 lua.h lualib.h lauxlib.h luaconf.h lua.hpp luajit.h /usr/local/include/luajit-2.1
    cd src/jit && install -m 0644 bc.lua bcsave.lua dump.lua p.lua v.lua zone.lua dis_x86.lua dis_x64.lua dis_arm.lua dis_arm64.lua dis_arm64be.lua dis_ppc.lua dis_mips.lua dis_mipsel.lua dis_mips64.lua dis_mips64el.lua vmdef.lua /usr/local/share/luajit-2.1.0-beta3/jit
    ln -sf luajit-2.1.0-beta3 /usr/local/bin/luajit
    ==== Successfully installed LuaJIT 2.1.0-beta3 to /usr/local ====lua-nginx-module
  11. lua-nginx-module
    ## 注意版本,不同的lua-nginx-module安装步骤不一样,特别是v1.10.23的版本不一样,需要其它依赖模块
    [root@151c73da6a2f lua-nginx-module]# git clone https://github.com/openresty/lua-nginx-module.git [root@151c73da6a2f lua-nginx-module]# git checkout -b v0.10.22 v0.10.22
  12. stream-lua-nginx-module (装不装都行)
    ## 根据官方文档要求,安装依赖lua组件
    
    ## 下载https://github.com/openresty/lua-resty-core
    git clone https://github.com/openresty/lua-resty-core.git
    make install
    
    ## 下载 https://github.com/openresty/lua-resty-lrucache.git
    git clone https://github.com/openresty/lua-resty-lrucache.git
    make install
    
    ## 下载 https://github.com/openresty/lua-nginx-module.git
    git clone https://github.com/openresty/lua-nginx-module.git
  13. --with-jemalloc
    [root@test-a11-nginx-33-101 modules]# bzip2 -d jemalloc-5.3.0.tar.bz2 &&  tar -xvf jemalloc-5.3.0.tar
    jemalloc-5.3.0/
    jemalloc-5.3.0/.appveyor.yml
    jemalloc-5.3.0/.autom4te.cfg
    jemalloc-5.3.0/.cirrus.yml
    jemalloc-5.3.0/.clang-format
    jemalloc-5.3.0/.gitattributes
    jemalloc-5.3.0/.gitignore
    jemalloc-5.3.0/.travis.yml
    jemalloc-5.3.0/COPYING
    jemalloc-5.3.0/ChangeLog
    jemalloc-5.3.0/INSTALL.md
    jemalloc-5.3.0/Makefile.in
    jemalloc-5.3.0/README
    jemalloc-5.3.0/TUNING.md
    jemalloc-5.3.0/autogen.sh
    jemalloc-5.3.0/bin/
    jemalloc-5.3.0/bin/jemalloc-config.in
    jemalloc-5.3.0/bin/jemalloc.sh.in
    jemalloc-5.3.0/bin/jeprof.in
    jemalloc-5.3.0/build-aux/
    jemalloc-5.3.0/build-aux/config.guess
    jemalloc-5.3.0/build-aux/config.sub
    jemalloc-5.3.0/build-aux/install-sh
    jemalloc-5.3.0/config.stamp.in
    jemalloc-5.3.0/configure.ac
    jemalloc-5.3.0/doc/
    jemalloc-5.3.0/doc/html.xsl.in
    jemalloc-5.3.0/doc/jemalloc.xml.in
    jemalloc-5.3.0/doc/manpages.xsl.in
    jemalloc-5.3.0/doc/stylesheet.xsl
    jemalloc-5.3.0/doc/jemalloc.html
    jemalloc-5.3.0/doc/jemalloc.3
    jemalloc-5.3.0/doc_internal/
    jemalloc-5.3.0/doc_internal/PROFILING_INTERNALS.md
    jemalloc-5.3.0/doc_internal/jemalloc.svg
    jemalloc-5.3.0/include/
    jemalloc-5.3.0/include/jemalloc/
    jemalloc-5.3.0/include/jemalloc/internal/
    jemalloc-5.3.0/include/jemalloc/internal/activity_callback.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_inlines_a.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_inlines_b.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_stats.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_structs.h
    jemalloc-5.3.0/include/jemalloc/internal/arena_types.h
    jemalloc-5.3.0/include/jemalloc/internal/assert.h
    jemalloc-5.3.0/include/jemalloc/internal/atomic.h
    jemalloc-5.3.0/include/jemalloc/internal/atomic_c11.h
    jemalloc-5.3.0/include/jemalloc/internal/atomic_gcc_atomic.h
    jemalloc-5.3.0/include/jemalloc/internal/atomic_gcc_sync.h
    jemalloc-5.3.0/include/jemalloc/internal/atomic_msvc.h
    jemalloc-5.3.0/include/jemalloc/internal/background_thread_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/background_thread_inlines.h
    jemalloc-5.3.0/include/jemalloc/internal/background_thread_structs.h
    jemalloc-5.3.0/include/jemalloc/internal/base.h
    jemalloc-5.3.0/include/jemalloc/internal/bin.h
    jemalloc-5.3.0/include/jemalloc/internal/bin_info.h
    jemalloc-5.3.0/include/jemalloc/internal/bin_stats.h
    jemalloc-5.3.0/include/jemalloc/internal/bin_types.h
    jemalloc-5.3.0/include/jemalloc/internal/bit_util.h
    jemalloc-5.3.0/include/jemalloc/internal/bitmap.h
    jemalloc-5.3.0/include/jemalloc/internal/buf_writer.h
    jemalloc-5.3.0/include/jemalloc/internal/cache_bin.h
    jemalloc-5.3.0/include/jemalloc/internal/ckh.h
    jemalloc-5.3.0/include/jemalloc/internal/counter.h
    jemalloc-5.3.0/include/jemalloc/internal/ctl.h
    jemalloc-5.3.0/include/jemalloc/internal/decay.h
    jemalloc-5.3.0/include/jemalloc/internal/div.h
    jemalloc-5.3.0/include/jemalloc/internal/ecache.h
    jemalloc-5.3.0/include/jemalloc/internal/edata.h
    jemalloc-5.3.0/include/jemalloc/internal/edata_cache.h
    jemalloc-5.3.0/include/jemalloc/internal/ehooks.h
    jemalloc-5.3.0/include/jemalloc/internal/emap.h
    jemalloc-5.3.0/include/jemalloc/internal/emitter.h
    jemalloc-5.3.0/include/jemalloc/internal/eset.h
    jemalloc-5.3.0/include/jemalloc/internal/exp_grow.h
    jemalloc-5.3.0/include/jemalloc/internal/extent.h
    jemalloc-5.3.0/include/jemalloc/internal/extent_dss.h
    jemalloc-5.3.0/include/jemalloc/internal/extent_mmap.h
    jemalloc-5.3.0/include/jemalloc/internal/fb.h
    jemalloc-5.3.0/include/jemalloc/internal/fxp.h
    jemalloc-5.3.0/include/jemalloc/internal/hash.h
    jemalloc-5.3.0/include/jemalloc/internal/hook.h
    jemalloc-5.3.0/include/jemalloc/internal/hpa.h
    jemalloc-5.3.0/include/jemalloc/internal/hpa_hooks.h
    jemalloc-5.3.0/include/jemalloc/internal/hpa_opts.h
    jemalloc-5.3.0/include/jemalloc/internal/hpdata.h
    jemalloc-5.3.0/include/jemalloc/internal/inspect.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_decls.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_defs.h.in
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_includes.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_inlines_a.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_inlines_b.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_inlines_c.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_macros.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_internal_types.h
    jemalloc-5.3.0/include/jemalloc/internal/jemalloc_preamble.h.in
    jemalloc-5.3.0/include/jemalloc/internal/large_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/lockedint.h
    jemalloc-5.3.0/include/jemalloc/internal/log.h
    jemalloc-5.3.0/include/jemalloc/internal/malloc_io.h
    jemalloc-5.3.0/include/jemalloc/internal/mpsc_queue.h
    jemalloc-5.3.0/include/jemalloc/internal/mutex.h
    jemalloc-5.3.0/include/jemalloc/internal/mutex_prof.h
    jemalloc-5.3.0/include/jemalloc/internal/nstime.h
    jemalloc-5.3.0/include/jemalloc/internal/pa.h
    jemalloc-5.3.0/include/jemalloc/internal/pac.h
    jemalloc-5.3.0/include/jemalloc/internal/pages.h
    jemalloc-5.3.0/include/jemalloc/internal/pai.h
    jemalloc-5.3.0/include/jemalloc/internal/peak.h
    jemalloc-5.3.0/include/jemalloc/internal/peak_event.h
    jemalloc-5.3.0/include/jemalloc/internal/ph.h
    jemalloc-5.3.0/include/jemalloc/internal/private_namespace.sh
    jemalloc-5.3.0/include/jemalloc/internal/private_symbols.sh
    jemalloc-5.3.0/include/jemalloc/internal/prng.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_data.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_hook.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_inlines.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_log.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_recent.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_stats.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_structs.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_sys.h
    jemalloc-5.3.0/include/jemalloc/internal/prof_types.h
    jemalloc-5.3.0/include/jemalloc/internal/psset.h
    jemalloc-5.3.0/include/jemalloc/internal/public_namespace.sh
    jemalloc-5.3.0/include/jemalloc/internal/public_unnamespace.sh
    jemalloc-5.3.0/include/jemalloc/internal/ql.h
    jemalloc-5.3.0/include/jemalloc/internal/qr.h
    jemalloc-5.3.0/include/jemalloc/internal/quantum.h
    jemalloc-5.3.0/include/jemalloc/internal/rb.h
    jemalloc-5.3.0/include/jemalloc/internal/rtree.h
    jemalloc-5.3.0/include/jemalloc/internal/rtree_tsd.h
    jemalloc-5.3.0/include/jemalloc/internal/safety_check.h
    jemalloc-5.3.0/include/jemalloc/internal/san.h
    jemalloc-5.3.0/include/jemalloc/internal/san_bump.h
    jemalloc-5.3.0/include/jemalloc/internal/sc.h
    jemalloc-5.3.0/include/jemalloc/internal/sec.h
    jemalloc-5.3.0/include/jemalloc/internal/sec_opts.h
    jemalloc-5.3.0/include/jemalloc/internal/seq.h
    jemalloc-5.3.0/include/jemalloc/internal/slab_data.h
    jemalloc-5.3.0/include/jemalloc/internal/smoothstep.h
    jemalloc-5.3.0/include/jemalloc/internal/smoothstep.sh
    jemalloc-5.3.0/include/jemalloc/internal/spin.h
    jemalloc-5.3.0/include/jemalloc/internal/stats.h
    jemalloc-5.3.0/include/jemalloc/internal/sz.h
    jemalloc-5.3.0/include/jemalloc/internal/tcache_externs.h
    jemalloc-5.3.0/include/jemalloc/internal/tcache_inlines.h
    jemalloc-5.3.0/include/jemalloc/internal/tcache_structs.h
    jemalloc-5.3.0/include/jemalloc/internal/tcache_types.h
    jemalloc-5.3.0/include/jemalloc/internal/test_hooks.h
    jemalloc-5.3.0/include/jemalloc/internal/thread_event.h
    jemalloc-5.3.0/include/jemalloc/internal/ticker.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd_generic.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd_malloc_thread_cleanup.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd_tls.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd_types.h
    jemalloc-5.3.0/include/jemalloc/internal/tsd_win.h
    jemalloc-5.3.0/include/jemalloc/internal/typed_list.h
    jemalloc-5.3.0/include/jemalloc/internal/util.h
    jemalloc-5.3.0/include/jemalloc/internal/witness.h
    jemalloc-5.3.0/include/jemalloc/jemalloc.sh
    jemalloc-5.3.0/include/jemalloc/jemalloc_defs.h.in
    jemalloc-5.3.0/include/jemalloc/jemalloc_macros.h.in
    jemalloc-5.3.0/include/jemalloc/jemalloc_mangle.sh
    jemalloc-5.3.0/include/jemalloc/jemalloc_protos.h.in
    jemalloc-5.3.0/include/jemalloc/jemalloc_rename.sh
    jemalloc-5.3.0/include/jemalloc/jemalloc_typedefs.h.in
    jemalloc-5.3.0/include/msvc_compat/
    jemalloc-5.3.0/include/msvc_compat/C99/
    jemalloc-5.3.0/include/msvc_compat/C99/stdbool.h
    jemalloc-5.3.0/include/msvc_compat/C99/stdint.h
    jemalloc-5.3.0/include/msvc_compat/strings.h
    jemalloc-5.3.0/include/msvc_compat/windows_extra.h
    jemalloc-5.3.0/jemalloc.pc.in
    jemalloc-5.3.0/m4/
    jemalloc-5.3.0/m4/ax_cxx_compile_stdcxx.m4
    jemalloc-5.3.0/msvc/
    jemalloc-5.3.0/msvc/ReadMe.txt
    jemalloc-5.3.0/msvc/jemalloc_vc2015.sln
    jemalloc-5.3.0/msvc/jemalloc_vc2017.sln
    jemalloc-5.3.0/msvc/projects/
    jemalloc-5.3.0/msvc/projects/vc2015/
    jemalloc-5.3.0/msvc/projects/vc2015/jemalloc/
    jemalloc-5.3.0/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj
    jemalloc-5.3.0/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters
    jemalloc-5.3.0/msvc/projects/vc2015/test_threads/
    jemalloc-5.3.0/msvc/projects/vc2015/test_threads/test_threads.vcxproj
    jemalloc-5.3.0/msvc/projects/vc2015/test_threads/test_threads.vcxproj.filters
    jemalloc-5.3.0/msvc/projects/vc2017/
    jemalloc-5.3.0/msvc/projects/vc2017/jemalloc/
    jemalloc-5.3.0/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj
    jemalloc-5.3.0/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj.filters
    jemalloc-5.3.0/msvc/projects/vc2017/test_threads/
    jemalloc-5.3.0/msvc/projects/vc2017/test_threads/test_threads.vcxproj
    jemalloc-5.3.0/msvc/projects/vc2017/test_threads/test_threads.vcxproj.filters
    jemalloc-5.3.0/msvc/test_threads/
    jemalloc-5.3.0/msvc/test_threads/test_threads.cpp
    jemalloc-5.3.0/msvc/test_threads/test_threads.h
    jemalloc-5.3.0/msvc/test_threads/test_threads_main.cpp
    jemalloc-5.3.0/run_tests.sh
    jemalloc-5.3.0/scripts/
    jemalloc-5.3.0/scripts/check-formatting.sh
    jemalloc-5.3.0/scripts/freebsd/
    jemalloc-5.3.0/scripts/freebsd/before_install.sh
    jemalloc-5.3.0/scripts/freebsd/before_script.sh
    jemalloc-5.3.0/scripts/freebsd/script.sh
    jemalloc-5.3.0/scripts/gen_run_tests.py
    jemalloc-5.3.0/scripts/gen_travis.py
    jemalloc-5.3.0/scripts/linux/
    jemalloc-5.3.0/scripts/linux/before_install.sh
    jemalloc-5.3.0/scripts/windows/
    jemalloc-5.3.0/scripts/windows/before_install.sh
    jemalloc-5.3.0/scripts/windows/before_script.sh
    jemalloc-5.3.0/scripts/windows/script.sh
    jemalloc-5.3.0/src/
    jemalloc-5.3.0/src/arena.c
    jemalloc-5.3.0/src/background_thread.c
    jemalloc-5.3.0/src/base.c
    jemalloc-5.3.0/src/bin.c
    jemalloc-5.3.0/src/bin_info.c
    jemalloc-5.3.0/src/bitmap.c
    jemalloc-5.3.0/src/buf_writer.c
    jemalloc-5.3.0/src/cache_bin.c
    jemalloc-5.3.0/src/ckh.c
    jemalloc-5.3.0/src/counter.c
    jemalloc-5.3.0/src/ctl.c
    jemalloc-5.3.0/src/decay.c
    jemalloc-5.3.0/src/div.c
    jemalloc-5.3.0/src/ecache.c
    jemalloc-5.3.0/src/edata.c
    jemalloc-5.3.0/src/edata_cache.c
    jemalloc-5.3.0/src/ehooks.c
    jemalloc-5.3.0/src/emap.c
    jemalloc-5.3.0/src/eset.c
    jemalloc-5.3.0/src/exp_grow.c
    jemalloc-5.3.0/src/extent.c
    jemalloc-5.3.0/src/extent_dss.c
    jemalloc-5.3.0/src/extent_mmap.c
    jemalloc-5.3.0/src/fxp.c
    jemalloc-5.3.0/src/hook.c
    jemalloc-5.3.0/src/hpa.c
    jemalloc-5.3.0/src/hpa_hooks.c
    jemalloc-5.3.0/src/hpdata.c
    jemalloc-5.3.0/src/inspect.c
    jemalloc-5.3.0/src/jemalloc.c
    jemalloc-5.3.0/src/jemalloc_cpp.cpp
    jemalloc-5.3.0/src/large.c
    jemalloc-5.3.0/src/log.c
    jemalloc-5.3.0/src/malloc_io.c
    jemalloc-5.3.0/src/mutex.c
    jemalloc-5.3.0/src/nstime.c
    jemalloc-5.3.0/src/pa.c
    jemalloc-5.3.0/src/pa_extra.c
    jemalloc-5.3.0/src/pac.c
    jemalloc-5.3.0/src/pages.c
    jemalloc-5.3.0/src/pai.c
    jemalloc-5.3.0/src/peak_event.c
    jemalloc-5.3.0/src/prof.c
    jemalloc-5.3.0/src/prof_data.c
    jemalloc-5.3.0/src/prof_log.c
    jemalloc-5.3.0/src/prof_recent.c
    jemalloc-5.3.0/src/prof_stats.c
    jemalloc-5.3.0/src/prof_sys.c
    jemalloc-5.3.0/src/psset.c
    jemalloc-5.3.0/src/rtree.c
    jemalloc-5.3.0/src/safety_check.c
    jemalloc-5.3.0/src/san.c
    jemalloc-5.3.0/src/san_bump.c
    jemalloc-5.3.0/src/sc.c
    jemalloc-5.3.0/src/sec.c
    jemalloc-5.3.0/src/stats.c
    jemalloc-5.3.0/src/sz.c
    jemalloc-5.3.0/src/tcache.c
    jemalloc-5.3.0/src/test_hooks.c
    jemalloc-5.3.0/src/thread_event.c
    jemalloc-5.3.0/src/ticker.c
    jemalloc-5.3.0/src/ticker.py
    jemalloc-5.3.0/src/tsd.c
    jemalloc-5.3.0/src/witness.c
    jemalloc-5.3.0/src/zone.c
    jemalloc-5.3.0/test/
    jemalloc-5.3.0/test/analyze/
    jemalloc-5.3.0/test/analyze/prof_bias.c
    jemalloc-5.3.0/test/analyze/rand.c
    jemalloc-5.3.0/test/analyze/sizes.c
    jemalloc-5.3.0/test/include/
    jemalloc-5.3.0/test/include/test/
    jemalloc-5.3.0/test/include/test/SFMT-alti.h
    jemalloc-5.3.0/test/include/test/SFMT-params.h
    jemalloc-5.3.0/test/include/test/SFMT-params11213.h
    jemalloc-5.3.0/test/include/test/SFMT-params1279.h
    jemalloc-5.3.0/test/include/test/SFMT-params132049.h
    jemalloc-5.3.0/test/include/test/SFMT-params19937.h
    jemalloc-5.3.0/test/include/test/SFMT-params216091.h
    jemalloc-5.3.0/test/include/test/SFMT-params2281.h
    jemalloc-5.3.0/test/include/test/SFMT-params4253.h
    jemalloc-5.3.0/test/include/test/SFMT-params44497.h
    jemalloc-5.3.0/test/include/test/SFMT-params607.h
    jemalloc-5.3.0/test/include/test/SFMT-params86243.h
    jemalloc-5.3.0/test/include/test/SFMT-sse2.h
    jemalloc-5.3.0/test/include/test/SFMT.h
    jemalloc-5.3.0/test/include/test/arena_util.h
    jemalloc-5.3.0/test/include/test/bench.h
    jemalloc-5.3.0/test/include/test/bgthd.h
    jemalloc-5.3.0/test/include/test/btalloc.h
    jemalloc-5.3.0/test/include/test/extent_hooks.h
    jemalloc-5.3.0/test/include/test/jemalloc_test.h.in
    jemalloc-5.3.0/test/include/test/jemalloc_test_defs.h.in
    jemalloc-5.3.0/test/include/test/math.h
    jemalloc-5.3.0/test/include/test/mq.h
    jemalloc-5.3.0/test/include/test/mtx.h
    jemalloc-5.3.0/test/include/test/nbits.h
    jemalloc-5.3.0/test/include/test/san.h
    jemalloc-5.3.0/test/include/test/sleep.h
    jemalloc-5.3.0/test/include/test/test.h
    jemalloc-5.3.0/test/include/test/thd.h
    jemalloc-5.3.0/test/include/test/timer.h
    jemalloc-5.3.0/test/integration/
    jemalloc-5.3.0/test/integration/MALLOCX_ARENA.c
    jemalloc-5.3.0/test/integration/aligned_alloc.c
    jemalloc-5.3.0/test/integration/allocated.c
    jemalloc-5.3.0/test/integration/cpp/
    jemalloc-5.3.0/test/integration/cpp/basic.cpp
    jemalloc-5.3.0/test/integration/cpp/infallible_new_false.cpp
    jemalloc-5.3.0/test/integration/cpp/infallible_new_false.sh
    jemalloc-5.3.0/test/integration/cpp/infallible_new_true.cpp
    jemalloc-5.3.0/test/integration/cpp/infallible_new_true.sh
    jemalloc-5.3.0/test/integration/extent.c
    jemalloc-5.3.0/test/integration/extent.sh
    jemalloc-5.3.0/test/integration/malloc.c
    jemalloc-5.3.0/test/integration/mallocx.c
    jemalloc-5.3.0/test/integration/mallocx.sh
    jemalloc-5.3.0/test/integration/overflow.c
    jemalloc-5.3.0/test/integration/posix_memalign.c
    jemalloc-5.3.0/test/integration/rallocx.c
    jemalloc-5.3.0/test/integration/sdallocx.c
    jemalloc-5.3.0/test/integration/slab_sizes.c
    jemalloc-5.3.0/test/integration/slab_sizes.sh
    jemalloc-5.3.0/test/integration/smallocx.c
    jemalloc-5.3.0/test/integration/smallocx.sh
    jemalloc-5.3.0/test/integration/thread_arena.c
    jemalloc-5.3.0/test/integration/thread_tcache_enabled.c
    jemalloc-5.3.0/test/integration/xallocx.c
    jemalloc-5.3.0/test/integration/xallocx.sh
    jemalloc-5.3.0/test/src/
    jemalloc-5.3.0/test/src/SFMT.c
    jemalloc-5.3.0/test/src/btalloc.c
    jemalloc-5.3.0/test/src/btalloc_0.c
    jemalloc-5.3.0/test/src/btalloc_1.c
    jemalloc-5.3.0/test/src/math.c
    jemalloc-5.3.0/test/src/mtx.c
    jemalloc-5.3.0/test/src/sleep.c
    jemalloc-5.3.0/test/src/test.c
    jemalloc-5.3.0/test/src/thd.c
    jemalloc-5.3.0/test/src/timer.c
    jemalloc-5.3.0/test/stress/
    jemalloc-5.3.0/test/stress/batch_alloc.c
    jemalloc-5.3.0/test/stress/fill_flush.c
    jemalloc-5.3.0/test/stress/hookbench.c
    jemalloc-5.3.0/test/stress/large_microbench.c
    jemalloc-5.3.0/test/stress/mallctl.c
    jemalloc-5.3.0/test/stress/microbench.c
    jemalloc-5.3.0/test/test.sh.in
    jemalloc-5.3.0/test/unit/
    jemalloc-5.3.0/test/unit/SFMT.c
    jemalloc-5.3.0/test/unit/a0.c
    jemalloc-5.3.0/test/unit/arena_decay.c
    jemalloc-5.3.0/test/unit/arena_decay.sh
    jemalloc-5.3.0/test/unit/arena_reset.c
    jemalloc-5.3.0/test/unit/arena_reset_prof.c
    jemalloc-5.3.0/test/unit/arena_reset_prof.sh
    jemalloc-5.3.0/test/unit/atomic.c
    jemalloc-5.3.0/test/unit/background_thread.c
    jemalloc-5.3.0/test/unit/background_thread_enable.c
    jemalloc-5.3.0/test/unit/base.c
    jemalloc-5.3.0/test/unit/batch_alloc.c
    jemalloc-5.3.0/test/unit/batch_alloc.sh
    jemalloc-5.3.0/test/unit/batch_alloc_prof.c
    jemalloc-5.3.0/test/unit/batch_alloc_prof.sh
    jemalloc-5.3.0/test/unit/binshard.c
    jemalloc-5.3.0/test/unit/binshard.sh
    jemalloc-5.3.0/test/unit/bit_util.c
    jemalloc-5.3.0/test/unit/bitmap.c
    jemalloc-5.3.0/test/unit/buf_writer.c
    jemalloc-5.3.0/test/unit/cache_bin.c
    jemalloc-5.3.0/test/unit/ckh.c
    jemalloc-5.3.0/test/unit/counter.c
    jemalloc-5.3.0/test/unit/decay.c
    jemalloc-5.3.0/test/unit/div.c
    jemalloc-5.3.0/test/unit/double_free.c
    jemalloc-5.3.0/test/unit/double_free.h
    jemalloc-5.3.0/test/unit/edata_cache.c
    jemalloc-5.3.0/test/unit/emitter.c
    jemalloc-5.3.0/test/unit/extent_quantize.c
    jemalloc-5.3.0/test/unit/fb.c
    jemalloc-5.3.0/test/unit/fork.c
    jemalloc-5.3.0/test/unit/fxp.c
    jemalloc-5.3.0/test/unit/hash.c
    jemalloc-5.3.0/test/unit/hook.c
    jemalloc-5.3.0/test/unit/hpa.c
    jemalloc-5.3.0/test/unit/hpa_background_thread.c
    jemalloc-5.3.0/test/unit/hpa_background_thread.sh
    jemalloc-5.3.0/test/unit/hpdata.c
    jemalloc-5.3.0/test/unit/huge.c
    jemalloc-5.3.0/test/unit/inspect.c
    jemalloc-5.3.0/test/unit/inspect.sh
    jemalloc-5.3.0/test/unit/junk.c
    jemalloc-5.3.0/test/unit/junk.sh
    jemalloc-5.3.0/test/unit/junk_alloc.c
    jemalloc-5.3.0/test/unit/junk_alloc.sh
    jemalloc-5.3.0/test/unit/junk_free.c
    jemalloc-5.3.0/test/unit/junk_free.sh
    jemalloc-5.3.0/test/unit/log.c
    jemalloc-5.3.0/test/unit/mallctl.c
    jemalloc-5.3.0/test/unit/malloc_conf_2.c
    jemalloc-5.3.0/test/unit/malloc_conf_2.sh
    jemalloc-5.3.0/test/unit/malloc_io.c
    jemalloc-5.3.0/test/unit/math.c
    jemalloc-5.3.0/test/unit/mpsc_queue.c
    jemalloc-5.3.0/test/unit/mq.c
    jemalloc-5.3.0/test/unit/mtx.c
    jemalloc-5.3.0/test/unit/nstime.c
    jemalloc-5.3.0/test/unit/oversize_threshold.c
    jemalloc-5.3.0/test/unit/pa.c
    jemalloc-5.3.0/test/unit/pack.c
    jemalloc-5.3.0/test/unit/pack.sh
    jemalloc-5.3.0/test/unit/pages.c
    jemalloc-5.3.0/test/unit/peak.c
    jemalloc-5.3.0/test/unit/ph.c
    jemalloc-5.3.0/test/unit/prng.c
    jemalloc-5.3.0/test/unit/prof_accum.c
    jemalloc-5.3.0/test/unit/prof_accum.sh
    jemalloc-5.3.0/test/unit/prof_active.c
    jemalloc-5.3.0/test/unit/prof_active.sh
    jemalloc-5.3.0/test/unit/prof_gdump.c
    jemalloc-5.3.0/test/unit/prof_gdump.sh
    jemalloc-5.3.0/test/unit/prof_hook.c
    jemalloc-5.3.0/test/unit/prof_hook.sh
    jemalloc-5.3.0/test/unit/prof_idump.c
    jemalloc-5.3.0/test/unit/prof_idump.sh
    jemalloc-5.3.0/test/unit/prof_log.c
    jemalloc-5.3.0/test/unit/prof_log.sh
    jemalloc-5.3.0/test/unit/prof_mdump.c
    jemalloc-5.3.0/test/unit/prof_mdump.sh
    jemalloc-5.3.0/test/unit/prof_recent.c
    jemalloc-5.3.0/test/unit/prof_recent.sh
    jemalloc-5.3.0/test/unit/prof_reset.c
    jemalloc-5.3.0/test/unit/prof_reset.sh
    jemalloc-5.3.0/test/unit/prof_stats.c
    jemalloc-5.3.0/test/unit/prof_stats.sh
    jemalloc-5.3.0/test/unit/prof_sys_thread_name.c
    jemalloc-5.3.0/test/unit/prof_sys_thread_name.sh
    jemalloc-5.3.0/test/unit/prof_tctx.c
    jemalloc-5.3.0/test/unit/prof_tctx.sh
    jemalloc-5.3.0/test/unit/prof_thread_name.c
    jemalloc-5.3.0/test/unit/prof_thread_name.sh
    jemalloc-5.3.0/test/unit/psset.c
    jemalloc-5.3.0/test/unit/ql.c
    jemalloc-5.3.0/test/unit/qr.c
    jemalloc-5.3.0/test/unit/rb.c
    jemalloc-5.3.0/test/unit/retained.c
    jemalloc-5.3.0/test/unit/rtree.c
    jemalloc-5.3.0/test/unit/safety_check.c
    jemalloc-5.3.0/test/unit/safety_check.sh
    jemalloc-5.3.0/test/unit/san.c
    jemalloc-5.3.0/test/unit/san.sh
    jemalloc-5.3.0/test/unit/san_bump.c
    jemalloc-5.3.0/test/unit/sc.c
    jemalloc-5.3.0/test/unit/sec.c
    jemalloc-5.3.0/test/unit/seq.c
    jemalloc-5.3.0/test/unit/size_check.c
    jemalloc-5.3.0/test/unit/size_check.sh
    jemalloc-5.3.0/test/unit/size_classes.c
    jemalloc-5.3.0/test/unit/slab.c
    jemalloc-5.3.0/test/unit/smoothstep.c
    jemalloc-5.3.0/test/unit/spin.c
    jemalloc-5.3.0/test/unit/stats.c
    jemalloc-5.3.0/test/unit/stats_print.c
    jemalloc-5.3.0/test/unit/sz.c
    jemalloc-5.3.0/test/unit/tcache_max.c
    jemalloc-5.3.0/test/unit/tcache_max.sh
    jemalloc-5.3.0/test/unit/test_hooks.c
    jemalloc-5.3.0/test/unit/thread_event.c
    jemalloc-5.3.0/test/unit/thread_event.sh
    jemalloc-5.3.0/test/unit/ticker.c
    jemalloc-5.3.0/test/unit/tsd.c
    jemalloc-5.3.0/test/unit/uaf.c
    jemalloc-5.3.0/test/unit/witness.c
    jemalloc-5.3.0/test/unit/zero.c
    jemalloc-5.3.0/test/unit/zero.sh
    jemalloc-5.3.0/test/unit/zero_realloc_abort.c
    jemalloc-5.3.0/test/unit/zero_realloc_abort.sh
    jemalloc-5.3.0/test/unit/zero_realloc_alloc.c
    jemalloc-5.3.0/test/unit/zero_realloc_alloc.sh
    jemalloc-5.3.0/test/unit/zero_realloc_free.c
    jemalloc-5.3.0/test/unit/zero_realloc_free.sh
    jemalloc-5.3.0/test/unit/zero_reallocs.c
    jemalloc-5.3.0/test/unit/zero_reallocs.sh
    jemalloc-5.3.0/VERSION
    jemalloc-5.3.0/configure
    [root@test-a11-nginx-33-101 modules]# cd jemalloc-5.3.0 && ./configure
    checking for xsltproc... false
    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 compiler is cray... no
    checking whether compiler supports -std=gnu11... yes
    checking whether compiler supports -Werror=unknown-warning-option... no
    checking whether compiler supports -Wall... yes
    checking whether compiler supports -Wextra... yes
    checking whether compiler supports -Wshorten-64-to-32... no
    checking whether compiler supports -Wsign-compare... yes
    checking whether compiler supports -Wundef... yes
    checking whether compiler supports -Wno-format-zero-length... yes
    checking whether compiler supports -Wpointer-arith... yes
    checking whether compiler supports -Wno-missing-braces... yes
    checking whether compiler supports -Wno-missing-field-initializers... yes
    checking whether compiler supports -Wno-missing-attributes... yes
    checking whether compiler supports -pipe... yes
    checking whether compiler supports -g3... yes
    checking how to run the C preprocessor... gcc -E
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking whether g++ supports C++17 features with -std=c++17... no
    checking whether g++ supports C++17 features with +std=c++17... no
    checking whether g++ supports C++17 features with -h std=c++17... no
    checking whether g++ supports C++17 features with -std=c++1z... no
    checking whether g++ supports C++17 features with +std=c++1z... no
    checking whether g++ supports C++17 features with -h std=c++1z... no
    configure: No compiler with C++17 support was found
    checking whether g++ supports C++14 features with -std=c++14... no
    checking whether g++ supports C++14 features with +std=c++14... no
    checking whether g++ supports C++14 features with -h std=c++14... no
    checking whether g++ supports C++14 features with -std=c++1y... no
    checking whether g++ supports C++14 features with +std=c++1y... no
    checking whether g++ supports C++14 features with -h std=c++1y... no
    configure: No compiler with C++14 support was found
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking whether byte ordering is bigendian... no
    checking size of void *... 8
    checking size of int... 4
    checking size of long... 8
    checking size of long long... 8
    checking size of intmax_t... 8
    checking build system type... x86_64-pc-linux-gnu
    checking host system type... x86_64-pc-linux-gnu
    checking whether pause instruction is compilable... yes
    checking number of significant virtual address bits... 48
    checking for ar... ar
    checking for nm... nm
    checking for gawk... gawk
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking whether malloc_usable_size definition can use const argument... no
    checking for library containing log... -lm
    checking whether __attribute__ syntax is compilable... yes
    checking whether compiler supports -fvisibility=hidden... yes
    checking whether compiler supports -fvisibility=hidden... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether tls_model attribute is compilable... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether alloc_size attribute is compilable... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether format(gnu_printf, ...) attribute is compilable... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether format(printf, ...) attribute is compilable... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether format(printf, ...) attribute is compilable... yes
    checking whether compiler supports -Wimplicit-fallthrough... no
    checking whether fallthrough attribute is compilable... no
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether cold attribute is compilable... yes
    checking whether vm_make_tag is compilable... no
    checking for a BSD-compatible install... /usr/bin/install -c
    checking for ranlib... ranlib
    checking for ld... /usr/bin/ld
    checking for autoconf... /usr/bin/autoconf
    checking for memalign... yes
    checking for valloc... yes
    checking for malloc_size... no
    checking for __libc_calloc... yes
    checking for __libc_free... yes
    checking for __libc_malloc... yes
    checking for __libc_memalign... yes
    checking for __libc_realloc... yes
    checking for __libc_valloc... yes
    checking for __posix_memalign... no
    checking whether compiler supports -O3... yes
    checking whether compiler supports -O3... yes
    checking whether compiler supports -funroll-loops... yes
    checking configured backtracing method... N/A
    checking for sbrk... yes
    checking whether utrace(2) is compilable... no
    checking whether utrace(2) with label is compilable... no
    checking whether a program using __builtin_unreachable is compilable... yes
    checking whether a program using __builtin_ffsl is compilable... yes
    checking whether a program using __builtin_popcountl is compilable... yes
    checking LG_PAGE... 12
    checking pthread.h usability... yes
    checking pthread.h presence... yes
    checking for pthread.h... yes
    checking for pthread_create in -lpthread... yes
    checking dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for dlsym... no
    checking for dlsym in -ldl... yes
    checking whether pthread_atfork(3) is compilable... yes
    checking whether pthread_setname_np(3) is compilable... yes
    checking whether pthread_getname_np(3) is compilable... yes
    checking whether pthread_get_name_np(3) is compilable... no
    checking for library containing clock_gettime... none required
    checking whether clock_gettime(CLOCK_MONOTONIC_COARSE, ...) is compilable... yes
    checking whether clock_gettime(CLOCK_MONOTONIC, ...) is compilable... yes
    checking whether mach_absolute_time() is compilable... no
    checking whether clock_gettime(CLOCK_REALTIME, ...) is compilable... yes
    checking whether compiler supports -Werror... yes
    checking whether syscall(2) is compilable... yes
    checking for secure_getenv... yes
    checking for sched_getcpu... yes
    checking for sched_setaffinity... yes
    checking for issetugid... no
    checking for _malloc_thread_cleanup... no
    checking for _pthread_mutex_init_calloc_cb... no
    checking for memcntl... no
    checking for TLS... yes
    checking whether C11 atomics is compilable... no
    checking whether GCC __atomic atomics is compilable... yes
    checking whether GCC 8-bit __atomic atomics is compilable... yes
    checking whether GCC __sync atomics is compilable... yes
    checking whether GCC 8-bit __sync atomics is compilable... yes
    checking whether Darwin OSAtomic*() is compilable... no
    checking whether madvise(2) is compilable... yes
    checking whether madvise(..., MADV_FREE) is compilable... no
    checking whether madvise(..., MADV_DONTNEED) is compilable... yes
    checking whether madvise(..., MADV_DO[NT]DUMP) is compilable... yes
    checking whether madvise(..., MADV_[NO]HUGEPAGE) is compilable... yes
    checking whether madvise(..., MADV_[NO]CORE) is compilable... no
    checking whether mprotect(2) is compilable... yes
    checking for __builtin_clz... yes
    checking whether Darwin os_unfair_lock_*() is compilable... no
    checking whether glibc malloc hook is compilable... yes
    checking whether glibc memalign hook is compilable... yes
    checking whether pthreads adaptive mutexes is compilable... yes
    checking whether compiler supports -D_GNU_SOURCE... yes
    checking whether compiler supports -Werror... yes
    checking whether compiler supports -herror_on_warning... no
    checking whether strerror_r returns char with gnu source is compilable... yes
    checking for stdbool.h that conforms to C99... yes
    checking for _Bool... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating jemalloc.pc
    config.status: creating doc/html.xsl
    config.status: creating doc/manpages.xsl
    config.status: creating doc/jemalloc.xml
    config.status: creating include/jemalloc/jemalloc_macros.h
    config.status: creating include/jemalloc/jemalloc_protos.h
    config.status: creating include/jemalloc/jemalloc_typedefs.h
    config.status: creating include/jemalloc/internal/jemalloc_preamble.h
    config.status: creating test/test.sh
    config.status: creating test/include/test/jemalloc_test.h
    config.status: creating config.stamp
    config.status: creating bin/jemalloc-config
    config.status: creating bin/jemalloc.sh
    config.status: creating bin/jeprof
    config.status: creating include/jemalloc/jemalloc_defs.h
    config.status: creating include/jemalloc/internal/jemalloc_internal_defs.h
    config.status: creating test/include/test/jemalloc_test_defs.h
    config.status: executing include/jemalloc/internal/public_symbols.txt commands
    config.status: executing include/jemalloc/internal/private_symbols.awk commands
    config.status: executing include/jemalloc/internal/private_symbols_jet.awk commands
    config.status: executing include/jemalloc/internal/public_namespace.h commands
    config.status: executing include/jemalloc/internal/public_unnamespace.h commands
    config.status: executing include/jemalloc/jemalloc_protos_jet.h commands
    config.status: executing include/jemalloc/jemalloc_rename.h commands
    config.status: executing include/jemalloc/jemalloc_mangle.h commands
    config.status: executing include/jemalloc/jemalloc_mangle_jet.h commands
    config.status: executing include/jemalloc/jemalloc.h commands
    ===============================================================================
    jemalloc version   : 5.3.0-0-g54eaed1d8b56b1aa528be3bdd1877e59c56fa90c
    library revision   : 2
    
    CONFIG             :
    CC                 : gcc
    CONFIGURE_CFLAGS   : -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops
    SPECIFIED_CFLAGS   :
    EXTRA_CFLAGS       :
    CPPFLAGS           : -D_GNU_SOURCE -D_REENTRANT
    CXX                : g++
    CONFIGURE_CXXFLAGS : -fvisibility=hidden -O3
    SPECIFIED_CXXFLAGS :
    EXTRA_CXXFLAGS     :
    LDFLAGS            :
    EXTRA_LDFLAGS      :
    DSO_LDFLAGS        : -shared -Wl,-soname,$(@F)
    LIBS               : -lm  -pthread -ldl
    RPATH_EXTRA        :
    
    XSLTPROC           : false
    XSLROOT            :
    
    PREFIX             : /usr/local
    BINDIR             : /usr/local/bin
    DATADIR            : /usr/local/share
    INCLUDEDIR         : /usr/local/include
    LIBDIR             : /usr/local/lib
    MANDIR             : /usr/local/share/man
    
    srcroot            :
    abs_srcroot        : /root/tengine/modules/jemalloc-5.3.0/
    objroot            :
    abs_objroot        : /root/tengine/modules/jemalloc-5.3.0/
    
    JEMALLOC_PREFIX    :
    JEMALLOC_PRIVATE_NAMESPACE
                       : je_
    install_suffix     :
    malloc_conf        :
    documentation      : 1
    shared libs        : 1
    static libs        : 1
    autogen            : 0
    debug              : 0
    stats              : 1
    experimental_smallocx : 0
    prof               : 0
    prof-libunwind     : 0
    prof-libgcc        : 0
    prof-gcc           : 0
    fill               : 1
    utrace             : 0
    xmalloc            : 0
    log                : 0
    lazy_lock          : 0
    cache-oblivious    : 1
    cxx                : 0
    ===============================================================================

    ## 编译安装 [root@test-a11-nginx-33-101 jemalloc-5.3.0]# make -j4 && make install_bin install_include install_lib gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/jemalloc.sym.o src/jemalloc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/arena.sym.o src/arena.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/background_thread.sym.o src/background_thread.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/base.sym.o src/base.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/bin.sym.o src/bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/bin_info.sym.o src/bin_info.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/bitmap.sym.o src/bitmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/buf_writer.sym.o src/buf_writer.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/cache_bin.sym.o src/cache_bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ckh.sym.o src/ckh.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/counter.sym.o src/counter.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ctl.sym.o src/ctl.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/decay.sym.o src/decay.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/div.sym.o src/div.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ecache.sym.o src/ecache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/edata.sym.o src/edata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/edata_cache.sym.o src/edata_cache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ehooks.sym.o src/ehooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/emap.sym.o src/emap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/eset.sym.o src/eset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/exp_grow.sym.o src/exp_grow.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent.sym.o src/extent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent_dss.sym.o src/extent_dss.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent_mmap.sym.o src/extent_mmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/fxp.sym.o src/fxp.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/san.sym.o src/san.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/san_bump.sym.o src/san_bump.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hook.sym.o src/hook.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hpa.sym.o src/hpa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hpa_hooks.sym.o src/hpa_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hpdata.sym.o src/hpdata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/inspect.sym.o src/inspect.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/large.sym.o src/large.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/log.sym.o src/log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/malloc_io.sym.o src/malloc_io.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/mutex.sym.o src/mutex.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/nstime.sym.o src/nstime.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pa.sym.o src/pa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pa_extra.sym.o src/pa_extra.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pai.sym.o src/pai.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pac.sym.o src/pac.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pages.sym.o src/pages.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/peak_event.sym.o src/peak_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof.sym.o src/prof.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof_data.sym.o src/prof_data.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof_log.sym.o src/prof_log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof_recent.sym.o src/prof_recent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof_stats.sym.o src/prof_stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof_sys.sym.o src/prof_sys.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/psset.sym.o src/psset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/rtree.sym.o src/rtree.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/safety_check.sym.o src/safety_check.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/sc.sym.o src/sc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/sec.sym.o src/sec.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/stats.sym.o src/stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/sz.sym.o src/sz.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/tcache.sym.o src/tcache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/test_hooks.sym.o src/test_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/thread_event.sym.o src/thread_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ticker.sym.o src/ticker.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/tsd.sym.o src/tsd.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/witness.sym.o src/witness.c nm -a src/jemalloc.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/jemalloc.sym nm -a src/arena.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/arena.sym nm -a src/background_thread.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/background_thread.sym nm -a src/base.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/base.sym nm -a src/bin.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/bin.sym nm -a src/bin_info.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/bin_info.sym nm -a src/bitmap.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/bitmap.sym nm -a src/buf_writer.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/buf_writer.sym nm -a src/cache_bin.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/cache_bin.sym nm -a src/ckh.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ckh.sym nm -a src/counter.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/counter.sym nm -a src/ctl.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ctl.sym nm -a src/decay.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/decay.sym nm -a src/div.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/div.sym nm -a src/ecache.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ecache.sym nm -a src/edata.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/edata.sym nm -a src/edata_cache.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/edata_cache.sym nm -a src/ehooks.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ehooks.sym nm -a src/emap.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/emap.sym nm -a src/eset.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/eset.sym nm -a src/exp_grow.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/exp_grow.sym nm -a src/extent.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent.sym nm -a src/extent_dss.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent_dss.sym nm -a src/extent_mmap.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent_mmap.sym nm -a src/fxp.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/fxp.sym nm -a src/san.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/san.sym nm -a src/san_bump.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/san_bump.sym nm -a src/hook.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hook.sym nm -a src/hpa.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hpa.sym nm -a src/hpa_hooks.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hpa_hooks.sym nm -a src/hpdata.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hpdata.sym nm -a src/inspect.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/inspect.sym nm -a src/large.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/large.sym nm -a src/log.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/log.sym nm -a src/malloc_io.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/malloc_io.sym nm -a src/mutex.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/mutex.sym nm -a src/nstime.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/nstime.sym nm -a src/pa.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pa.sym nm -a src/pa_extra.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pa_extra.sym nm -a src/pai.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pai.sym nm -a src/pac.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pac.sym nm -a src/pages.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pages.sym nm -a src/peak_event.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/peak_event.sym nm -a src/prof.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof.sym nm -a src/prof_data.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof_data.sym nm -a src/prof_log.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof_log.sym nm -a src/prof_recent.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof_recent.sym nm -a src/prof_stats.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof_stats.sym nm -a src/prof_sys.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof_sys.sym nm -a src/psset.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/psset.sym nm -a src/rtree.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/rtree.sym nm -a src/safety_check.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/safety_check.sym nm -a src/sc.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/sc.sym nm -a src/sec.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/sec.sym nm -a src/sz.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/sz.sym nm -a src/tcache.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/tcache.sym nm -a src/test_hooks.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/test_hooks.sym nm -a src/thread_event.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/thread_event.sym nm -a src/ticker.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ticker.sym nm -a src/tsd.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/tsd.sym nm -a src/witness.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/witness.sym nm -a src/stats.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/stats.sym /bin/sh include/jemalloc/internal/private_namespace.sh src/jemalloc.sym src/arena.sym src/background_thread.sym src/base.sym src/bin.sym src/bin_info.sym src/bitmap.sym src/buf_writer.sym src/cache_bin.sym src/ckh.sym src/counter.sym src/ctl.sym src/decay.sym src/div.sym src/ecache.sym src/edata.sym src/edata_cache.sym src/ehooks.sym src/emap.sym src/eset.sym src/exp_grow.sym src/extent.sym src/extent_dss.sym src/extent_mmap.sym src/fxp.sym src/san.sym src/san_bump.sym src/hook.sym src/hpa.sym src/hpa_hooks.sym src/hpdata.sym src/inspect.sym src/large.sym src/log.sym src/malloc_io.sym src/mutex.sym src/nstime.sym src/pa.sym src/pa_extra.sym src/pai.sym src/pac.sym src/pages.sym src/peak_event.sym src/prof.sym src/prof_data.sym src/prof_log.sym src/prof_recent.sym src/prof_stats.sym src/prof_sys.sym src/psset.sym src/rtree.sym src/safety_check.sym src/sc.sym src/sec.sym src/stats.sym src/sz.sym src/tcache.sym src/test_hooks.sym src/thread_event.sym src/ticker.sym src/tsd.sym src/witness.sym > include/jemalloc/internal/private_namespace.gen.h cp include/jemalloc/internal/private_namespace.gen.h include/jemalloc/internal/private_namespace.h gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/jemalloc.pic.o src/jemalloc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/arena.pic.o src/arena.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/background_thread.pic.o src/background_thread.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/base.pic.o src/base.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bin.pic.o src/bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bin_info.pic.o src/bin_info.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bitmap.pic.o src/bitmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/buf_writer.pic.o src/buf_writer.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/cache_bin.pic.o src/cache_bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ckh.pic.o src/ckh.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/counter.pic.o src/counter.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ctl.pic.o src/ctl.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/decay.pic.o src/decay.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/div.pic.o src/div.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ecache.pic.o src/ecache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/edata.pic.o src/edata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/edata_cache.pic.o src/edata_cache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ehooks.pic.o src/ehooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/emap.pic.o src/emap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/eset.pic.o src/eset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/exp_grow.pic.o src/exp_grow.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent.pic.o src/extent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_dss.pic.o src/extent_dss.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_mmap.pic.o src/extent_mmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/fxp.pic.o src/fxp.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/san.pic.o src/san.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/san_bump.pic.o src/san_bump.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hook.pic.o src/hook.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpa.pic.o src/hpa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpa_hooks.pic.o src/hpa_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpdata.pic.o src/hpdata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/inspect.pic.o src/inspect.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/large.pic.o src/large.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/log.pic.o src/log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/malloc_io.pic.o src/malloc_io.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mutex.pic.o src/mutex.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/nstime.pic.o src/nstime.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pa.pic.o src/pa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pa_extra.pic.o src/pa_extra.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pai.pic.o src/pai.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pac.pic.o src/pac.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pages.pic.o src/pages.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/peak_event.pic.o src/peak_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof.pic.o src/prof.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_data.pic.o src/prof_data.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_log.pic.o src/prof_log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_recent.pic.o src/prof_recent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_stats.pic.o src/prof_stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_sys.pic.o src/prof_sys.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/psset.pic.o src/psset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/rtree.pic.o src/rtree.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/safety_check.pic.o src/safety_check.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sc.pic.o src/sc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sec.pic.o src/sec.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/stats.pic.o src/stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sz.pic.o src/sz.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tcache.pic.o src/tcache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/test_hooks.pic.o src/test_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/thread_event.pic.o src/thread_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ticker.pic.o src/ticker.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tsd.pic.o src/tsd.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -fPIC -DPIC -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/witness.pic.o src/witness.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/jemalloc.o src/jemalloc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/arena.o src/arena.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/background_thread.o src/background_thread.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/base.o src/base.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bin.o src/bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bin_info.o src/bin_info.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bitmap.o src/bitmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/buf_writer.o src/buf_writer.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/cache_bin.o src/cache_bin.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ckh.o src/ckh.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/counter.o src/counter.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ctl.o src/ctl.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/decay.o src/decay.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/div.o src/div.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ecache.o src/ecache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/edata.o src/edata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/edata_cache.o src/edata_cache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ehooks.o src/ehooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/emap.o src/emap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/eset.o src/eset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/exp_grow.o src/exp_grow.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent.o src/extent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_dss.o src/extent_dss.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_mmap.o src/extent_mmap.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/fxp.o src/fxp.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/san.o src/san.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/san_bump.o src/san_bump.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hook.o src/hook.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpa.o src/hpa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpa_hooks.o src/hpa_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hpdata.o src/hpdata.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/inspect.o src/inspect.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/large.o src/large.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/log.o src/log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/malloc_io.o src/malloc_io.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mutex.o src/mutex.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/nstime.o src/nstime.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pa.o src/pa.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pa_extra.o src/pa_extra.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pai.o src/pai.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pac.o src/pac.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pages.o src/pages.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/peak_event.o src/peak_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof.o src/prof.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_data.o src/prof_data.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_log.o src/prof_log.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_recent.o src/prof_recent.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_stats.o src/prof_stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof_sys.o src/prof_sys.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/psset.o src/psset.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/rtree.o src/rtree.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/safety_check.o src/safety_check.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sc.o src/sc.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sec.o src/sec.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/stats.o src/stats.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sz.o src/sz.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tcache.o src/tcache.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/test_hooks.o src/test_hooks.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/thread_event.o src/thread_event.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ticker.o src/ticker.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tsd.o src/tsd.c gcc -std=gnu11 -Wall -Wextra -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers -Wno-missing-attributes -pipe -g3 -fvisibility=hidden -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/witness.o src/witness.c ar crus lib/libjemalloc_pic.a src/jemalloc.pic.o src/arena.pic.o src/background_thread.pic.o src/base.pic.o src/bin.pic.o src/bin_info.pic.o src/bitmap.pic.o src/buf_writer.pic.o src/cache_bin.pic.o src/ckh.pic.o src/counter.pic.o src/ctl.pic.o src/decay.pic.o src/div.pic.o src/ecache.pic.o src/edata.pic.o src/edata_cache.pic.o src/ehooks.pic.o src/emap.pic.o src/eset.pic.o src/exp_grow.pic.o src/extent.pic.o src/extent_dss.pic.o src/extent_mmap.pic.o src/fxp.pic.o src/san.pic.o src/san_bump.pic.o src/hook.pic.o src/hpa.pic.o src/hpa_hooks.pic.o src/hpdata.pic.o src/inspect.pic.o src/large.pic.o src/log.pic.o src/malloc_io.pic.o src/mutex.pic.o src/nstime.pic.o src/pa.pic.o src/pa_extra.pic.o src/pai.pic.o src/pac.pic.o src/pages.pic.o src/peak_event.pic.o src/prof.pic.o src/prof_data.pic.o src/prof_log.pic.o src/prof_recent.pic.o src/prof_stats.pic.o src/prof_sys.pic.o src/psset.pic.o src/rtree.pic.o src/safety_check.pic.o src/sc.pic.o src/sec.pic.o src/stats.pic.o src/sz.pic.o src/tcache.pic.o src/test_hooks.pic.o src/thread_event.pic.o src/ticker.pic.o src/tsd.pic.o src/witness.pic.o gcc -shared -Wl,-soname,libjemalloc.so.2 -o lib/libjemalloc.so.2 src/jemalloc.pic.o src/arena.pic.o src/background_thread.pic.o src/base.pic.o src/bin.pic.o src/bin_info.pic.o src/bitmap.pic.o src/buf_writer.pic.o src/cache_bin.pic.o src/ckh.pic.o src/counter.pic.o src/ctl.pic.o src/decay.pic.o src/div.pic.o src/ecache.pic.o src/edata.pic.o src/edata_cache.pic.o src/ehooks.pic.o src/emap.pic.o src/eset.pic.o src/exp_grow.pic.o src/extent.pic.o src/extent_dss.pic.o src/extent_mmap.pic.o src/fxp.pic.o src/san.pic.o src/san_bump.pic.o src/hook.pic.o src/hpa.pic.o src/hpa_hooks.pic.o src/hpdata.pic.o src/inspect.pic.o src/large.pic.o src/log.pic.o src/malloc_io.pic.o src/mutex.pic.o src/nstime.pic.o src/pa.pic.o src/pa_extra.pic.o src/pai.pic.o src/pac.pic.o src/pages.pic.o src/peak_event.pic.o src/prof.pic.o src/prof_data.pic.o src/prof_log.pic.o src/prof_recent.pic.o src/prof_stats.pic.o src/prof_sys.pic.o src/psset.pic.o src/rtree.pic.o src/safety_check.pic.o src/sc.pic.o src/sec.pic.o src/stats.pic.o src/sz.pic.o src/tcache.pic.o src/test_hooks.pic.o src/thread_event.pic.o src/ticker.pic.o src/tsd.pic.o src/witness.pic.o -lm -pthread -ldl ln -sf libjemalloc.so.2 lib/libjemalloc.so ar crus lib/libjemalloc.a src/jemalloc.o src/arena.o src/background_thread.o src/base.o src/bin.o src/bin_info.o src/bitmap.o src/buf_writer.o src/cache_bin.o src/ckh.o src/counter.o src/ctl.o src/decay.o src/div.o src/ecache.o src/edata.o src/edata_cache.o src/ehooks.o src/emap.o src/eset.o src/exp_grow.o src/extent.o src/extent_dss.o src/extent_mmap.o src/fxp.o src/san.o src/san_bump.o src/hook.o src/hpa.o src/hpa_hooks.o src/hpdata.o src/inspect.o src/large.o src/log.o src/malloc_io.o src/mutex.o src/nstime.o src/pa.o src/pa_extra.o src/pai.o src/pac.o src/pages.o src/peak_event.o src/prof.o src/prof_data.o src/prof_log.o src/prof_recent.o src/prof_stats.o src/prof_sys.o src/psset.o src/rtree.o src/safety_check.o src/sc.o src/sec.o src/stats.o src/sz.o src/tcache.o src/test_hooks.o src/thread_event.o src/ticker.o src/tsd.o src/witness.o /usr/bin/install -c -d /usr/local/bin 'bin/jemalloc-config' -> '/usr/local/bin/jemalloc-config' 'bin/jemalloc.sh' -> '/usr/local/bin/jemalloc.sh' 'bin/jeprof' -> '/usr/local/bin/jeprof' /usr/bin/install -c -d /usr/local/include/jemalloc 'include/jemalloc/jemalloc.h' -> '/usr/local/include/jemalloc/jemalloc.h' /usr/bin/install -c -d /usr/local/lib /usr/bin/install -c -v -m 755 lib/libjemalloc.so.2 /usr/local/lib 'lib/libjemalloc.so.2' -> '/usr/local/lib/libjemalloc.so.2' ln -sf libjemalloc.so.2 /usr/local/lib/libjemalloc.so /usr/bin/install -c -d /usr/local/lib 'lib/libjemalloc.a' -> '/usr/local/lib/libjemalloc.a' 'lib/libjemalloc_pic.a' -> '/usr/local/lib/libjemalloc_pic.a' /usr/bin/install -c -d /usr/local/lib/pkgconfig 'jemalloc.pc' -> '/usr/local/lib/pkgconfig/jemalloc.pc'

    ##刷新动态连接库 [root@test-a11-nginx-33-101 jemalloc-5.3.0]# echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf && ldconfig [root@test-a11-nginx-33-101 jemalloc-5.3.0]# ldconfig -p | grep jemalloc libjemalloc.so.2 (libc6,x86-64) => /usr/local/lib/libjemalloc.so.2 libjemalloc.so (libc6,x86-64) => /usr/local/lib/libjemalloc.so 

编译tengine

  1. 编译参数
    ./configure \
        --prefix=/etc/tengine \
        --sbin-path=/usr/sbin/nginx \
        --conf-path=/etc/tengine/nginx.conf \
        --error-log-path=/var/log/nginx/nginx_error.log \
        --pid-path=/var/run/nginx.pid \
        --lock-path=/var/run/nginx.lock \
        --user=nginx \
        --group=nginx \
        --with-threads \
        --with-file-aio \
        --with-ld-opt="-Wl,-rpath,/usr/local/lib" \
        --with-luajit-lib=/usr/local/lib/ \
        --with-luajit-inc=/usr/local/include/luajit-2.0 \
        --with-lua-inc=/usr/local/include/luajit-2.0 \
        --with-lua-lib=/usr/local/lib/ \
        --with-http_ssl_module \
        --with-http_v2_module \
        --with-http_realip_module \
        --with-http_addition_module \
        --with-http_sub_module \
        --with-http_dav_module \
        --with-http_flv_module \
        --with-http_mp4_module \
        --with-http_gunzip_module \
        --with-http_gzip_static_module \
        --with-http_auth_request_module \
        --with-http_random_index_module \
        --with-http_secure_link_module \
        --with-http_slice_module \
        --with-http_stub_status_module \
        --http-log-path=/var/log/nginx/nginx_access.log \
        --with-mail=dynamic \
        --with-mail_ssl_module \
        --with-stream=dynamic \
        --with-stream_realip_module \
        --with-stream_ssl_module \
        --with-jemalloc \
        --with-openssl=/root/tengine/modules/openssl-1.1.1s \
        --with-pcre=/root/tengine/modules/pcre2-10.40 \ ## 使用过程中可以删掉,感觉不太兼容与oepnssl
        --with-zlib=/root/tengine/modules/zlib-1.2.13 \
        --add-module=/root/tengine/modules/nginx-module-vts-v0.2.1 \
        --add-module=/root/tengine/modules/ngx_cache_purge \
        --add-module=/root/tengine/modules/ngx_devel_kit \
        --add-module=/root/tengine/modules/nginx-upload-progress-module \
        --add-module=/root/tengine/modules/ngx_http_upstream_check_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_consistent_hash_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_dynamic_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_dyups_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_session_sticky_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_vnswrr_module \
        --add-module=/root/tengine/modules/lua-nginx-module-v0.10.22 \
        --add-module=/root/tengine/modules/ngx_http_reqstat_module \
        --add-module=/root/tengine/modules/headers-more-nginx-module 
  2. luajit2 编译参数

    ./configure \
        --prefix=/etc/tengine \
        --sbin-path=/usr/sbin/nginx \
        --conf-path=/etc/tengine/nginx.conf \
        --error-log-path=/var/log/nginx/nginx_error.log \
        --pid-path=/var/run/nginx.pid \
        --lock-path=/var/run/nginx.lock \
        --user=nginx \
        --group=nginx \
        --with-threads \
        --with-file-aio \
        --with-ld-opt="-Wl,-rpath,/usr/local/lib" \
        --with-luajit-lib=/usr/local/lib/ \
        --with-luajit-inc=/usr/local/include/luajit-2.1 \
        --with-lua-inc=/usr/local/include/luajit-2.1 \
        --with-lua-lib=/usr/local/lib/ \
        --with-http_ssl_module \
        --with-http_v2_module \
        --with-http_realip_module \
        --with-http_addition_module \
        --with-http_sub_module \
        --with-http_dav_module \
        --with-http_flv_module \
        --with-http_mp4_module \
        --with-http_gunzip_module \
        --with-http_gzip_static_module \
        --with-http_auth_request_module \
        --with-http_random_index_module \
        --with-http_secure_link_module \
        --with-http_slice_module \
        --with-http_stub_status_module \
        --http-log-path=/var/log/nginx/nginx_access.log \
        --with-mail=dynamic \
        --with-mail_ssl_module \
        --with-stream=dynamic \
        --with-stream_realip_module \
        --with-stream_ssl_module \
        --with-jemalloc \
        --with-openssl=/root/tengine/modules/openssl-1.1.1s \
        --with-zlib=/root/tengine/modules/zlib-1.2.13 \
        --add-module=/root/tengine/modules/nginx-module-vts-v0.2.1 \
        --add-module=/root/tengine/modules/ngx_cache_purge \
        --add-module=/root/tengine/modules/ngx_devel_kit \
        --add-module=/root/tengine/modules/nginx-upload-progress-module \
        --add-module=/root/tengine/modules/ngx_http_upstream_check_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_consistent_hash_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_dynamic_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_dyups_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_session_sticky_module \
        --add-module=/root/tengine/modules/ngx_http_upstream_vnswrr_module \
        --add-module=/root/tengine/modules/lua-nginx-module-v0.10.23 \
        --add-module=/root/tengine/modules/ngx_http_reqstat_module \
        --add-module=/root/tengine/modules/headers-more-nginx-module

编译环境下载

  1. 可以使用docker push,环境已经保存至dockerhub
    docker pull parkhyomin/tengine:2.4.0
    
    docker pull parkhyomin/tengine:2.4.0-no-pcre

     

 

make -j8
posted @ 2023-03-05 21:25  MacoPlus  阅读(388)  评论(0编辑  收藏  举报