LoginSignup
1
1

More than 5 years have passed since last update.

How to install nghttp2, h2load on CentOS7

Last updated at Posted at 2018-03-20

Reference

I cannot build and install the latest nghttp2 from source on CentOS 7.3 #891
https://github.com/nghttp2/nghttp2/issues/891

Did you install the required dependencies? Namely the following ones:
c-ares-devel
libev-devel
openssl-devel
zlib-devel

How to install nghttp2, h2load on OracleLinux 6.7
https://qiita.com/tkprof/items/81c416657f1d3ba9a634

How to install h2load

  • git clone && git submodule update --init

h2load nghttp2/1.32.0-DEV as of 2018/03/20

# git clone https://github.com/tatsuhiro-t/nghttp2.git

Cloning into 'nghttp2'...
remote: Counting objects: 38103, done.
remote: Compressing objects: 100% (43/43), done.
remote: Total 38103 (delta 25), reused 46 (delta 24), pack-reused 38036
Receiving objects: 100% (38103/38103), 29.30 MiB | 13.99 MiB/s, done.
Resolving deltas: 100% (28281/28281), done.

# cd nghttp2/

# git submodule update --init

Submodule 'third-party/mruby' (https://github.com/mruby/mruby) registered for path 'third-party/mruby'
Submodule 'third-party/neverbleed' (https://github.com/h2o/neverbleed.git) registered for path 'third-party/neverbleed'
Cloning into 'third-party/mruby'...
remote: Counting objects: 43586, done.
remote: Compressing objects: 100% (7/7), done.
remote: Total 43586 (delta 0), reused 6 (delta 0), pack-reused 43578
Receiving objects: 100% (43586/43586), 9.95 MiB | 7.74 MiB/s, done.
Resolving deltas: 100% (27248/27248), done.
Submodule path 'third-party/mruby': checked out '4696093673c3352a1897490ecc5e4e4e40f463b5'
Cloning into 'third-party/neverbleed'...
remote: Counting objects: 181, done.
remote: Total 181 (delta 0), reused 0 (delta 0), pack-reused 181
Receiving objects: 100% (181/181), 54.99 KiB | 0 bytes/s, done.
Resolving deltas: 100% (107/107), done.
Submodule path 'third-party/neverbleed': checked out 'ff1171188fe508f633b1f247b5ab458c741d95b0'

# autoreconf -i
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
configure.ac:35: installing './config.guess'
configure.ac:35: installing './config.sub'
configure.ac:41: installing './install-sh'
configure.ac:41: installing './missing'
Makefile.am: installing './INSTALL'
examples/Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'

# automake

# autoconf
  • yum install libev-devel
# yum install libev-devel

Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirror.fairway.ne.jp
 * elrepo: mirrors.thzhost.com
 * epel: mirrors.nipa.cloud
 * epel-debuginfo: ftp.riken.jp
 * epel-source: ftp.riken.jp
 * extras: www.ftp.ne.jp
 * updates: www.ftp.ne.jp
Resolving Dependencies
--> Running transaction check
---> Package libev-devel.x86_64 0:4.15-7.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=================================================================================================================================================
 Package                              Arch                            Version                              Repository                       Size
=================================================================================================================================================
Installing:
 libev-devel                          x86_64                          4.15-7.el7                           extras                           97 k

Transaction Summary
=================================================================================================================================================
Install  1 Package

Total download size: 97 k
Installed size: 127 k
Is this ok [y/d/N]: y
Downloading packages:
libev-devel-4.15-7.el7.x86_64.rpm                                                                                         |  97 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : libev-devel-4.15-7.el7.x86_64                                                                                                 1/1 
  Verifying  : libev-devel-4.15-7.el7.x86_64                                                                                                 1/1 

Installed:
  libev-devel.x86_64 0:4.15-7.el7                                                                                                                

Complete!
  • yum install c-ares-devel
# yum install c-ares-devel

Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirror.fairway.ne.jp
 * elrepo: mirrors.thzhost.com
 * epel: www.ftp.ne.jp
 * epel-debuginfo: ftp.riken.jp
 * epel-source: ftp.riken.jp
 * extras: www.ftp.ne.jp
 * updates: www.ftp.ne.jp
Resolving Dependencies
--> Running transaction check
---> Package c-ares-devel.x86_64 0:1.10.0-3.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=================================================================================================================================================
 Package                               Arch                            Version                               Repository                     Size
=================================================================================================================================================
Installing:
 c-ares-devel                          x86_64                          1.10.0-3.el7                          base                           72 k

Transaction Summary
=================================================================================================================================================
Install  1 Package

Total download size: 72 k
Installed size: 84 k
Is this ok [y/d/N]: y
Downloading packages:
c-ares-devel-1.10.0-3.el7.x86_64.rpm                                                                                      |  72 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : c-ares-devel-1.10.0-3.el7.x86_64                                                                                              1/1 
  Verifying  : c-ares-devel-1.10.0-3.el7.x86_64                                                                                              1/1 

Installed:
  c-ares-devel.x86_64 0:1.10.0-3.el7                                                                                                             

Complete!
  • configure --enable-app
./configure --enable-app
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 how to run the C preprocessor... gcc -E
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 minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking whether make supports nested variables... yes
checking dependency style of gcc... gcc3
checking whether make supports nested variables... (cached) yes
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking dependency style of g++... gcc3
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.20... yes
checking for a Python interpreter with version >= 2.7... python
checking for python... /usr/bin/python
checking for python version... 2.7
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.7/site-packages
checking for python extension module directory... ${exec_prefix}/lib64/python2.7/site-packages
checking for python2.7... (cached) /usr/bin/python
checking for a version of Python >= '2.1.0'... yes
checking for a version of Python >= '2.7'... yes
checking for the distutils Python package... yes
checking for Python include path... -I/usr/include/python2.7
checking for Python library path... -L/usr/lib64 -lpython2.7
checking for Python site-packages path... /usr/lib/python2.7/site-packages
checking python extra libraries... -lpthread -ldl  -lutil
checking python extra linking flags... -Xlinker -export-dynamic
checking consistency of all components of python development environment... yes
checking for cython.py... no
checking for cython... no
checking whether g++ supports C++11 features by default... no
checking whether g++ supports C++11 features with -std=c++11... yes
checking whether std::future is available... yes
checking whether std::map::emplace is available... yes
checking whether std::atomic_* overloads for std::shared_ptr are available... no
checking whether thread_local storage class specifier is available.... yes
checking for ZLIB... yes
checking for library containing dlopen... -ldl
checking for CUNIT... no
configure: WARNING: No package 'cunit' found
checking for CU_initialize_registry in -lcunit... no
checking for ev_time in -lev... yes
checking ev.h usability... yes
checking ev.h presence... yes
checking for ev.h... yes
checking for OPENSSL... yes
checking for LIBCARES... yes
checking for LIBEVENT_OPENSSL... no
configure: No package 'libevent_openssl' found
checking for JANSSON... no
configure: No package 'jansson' found
checking for SYSTEMD... no
configure: No package 'libsystemd' found
checking for LIBXML2... no
configure: No package 'libxml-2.0' found
checking for library containing malloc_stats_print... no
checking for library containing je_malloc_stats_print... no
checking whether to enable assertions... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for inttypes.h... (cached) yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdint.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking for size_t... yes
checking for ssize_t... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for uid_t in sys/types.h... yes
checking for ptrdiff_t... yes
checking whether byte ordering is bigendian... no
checking for inline... inline
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for struct tm.tm_gmtoff... yes
checking for struct sockaddr_in.sin_len... no
checking for struct sockaddr_in6.sin6_len... no
checking size of int *... 8
checking size of time_t... 8
checking for unistd.h... (cached) yes
checking for working chown... yes
checking for error_at_line... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for working strnlen... yes
checking for _Exit... yes
checking for accept4... yes
checking for dup2... yes
checking for getcwd... yes
checking for getpwnam... yes
checking for localtime_r... yes
checking for memchr... yes
checking for memmove... yes
checking for memset... yes
checking for mkostemp... yes
checking for socket... yes
checking for sqrt... no
checking for strchr... yes
checking for strdup... yes
checking for strerror... yes
checking for strndup... yes
checking for strstr... yes
checking for strtol... yes
checking for strtoul... yes
checking for timegm... yes
checking for timerfd_create... yes
checking whether initgroups is declared... yes
checking whether C compiler accepts -fvisibility=hidden... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating lib/libnghttp2.pc
config.status: creating lib/includes/Makefile
config.status: creating lib/includes/nghttp2/nghttp2ver.h
config.status: creating tests/Makefile
config.status: creating tests/testdata/Makefile
config.status: creating third-party/Makefile
config.status: creating src/Makefile
config.status: creating src/includes/Makefile
config.status: creating src/libnghttp2_asio.pc
config.status: creating examples/Makefile
config.status: creating python/Makefile
config.status: creating python/setup.py
config.status: creating integration-tests/Makefile
config.status: creating integration-tests/config.go
config.status: creating integration-tests/setenv
config.status: creating doc/Makefile
config.status: creating doc/conf.py
config.status: creating doc/index.rst
config.status: creating doc/package_README.rst
config.status: creating doc/tutorial-client.rst
config.status: creating doc/tutorial-server.rst
config.status: creating doc/tutorial-hpack.rst
config.status: creating doc/nghttpx-howto.rst
config.status: creating doc/h2load-howto.rst
config.status: creating doc/libnghttp2_asio.rst
config.status: creating doc/python-apiref.rst
config.status: creating doc/building-android-binary.rst
config.status: creating doc/nghttp2.h.rst
config.status: creating doc/nghttp2ver.h.rst
config.status: creating doc/asio_http2.h.rst
config.status: creating doc/asio_http2_server.h.rst
config.status: creating doc/asio_http2_client.h.rst
config.status: creating doc/contribute.rst
config.status: creating contrib/Makefile
config.status: creating script/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing libtool commands
config.status: executing depfiles commands
configure: summary of build options:

    Package version: 1.32.0-DEV
    Library version: 30:0:16
    Install prefix:  /usr/local
    System types:
      Build:         x86_64-unknown-linux-gnu
      Host:          x86_64-unknown-linux-gnu
      Target:        x86_64-unknown-linux-gnu
    Compiler:
      C compiler:     gcc
      CFLAGS:         -g -O2
      LDFLAGS:        
      C++ compiler:   g++
      CXXFLAGS:       -g -O2
      CXXCPP:         g++ -E
      C preprocessor: gcc -E
      CPPFLAGS:       
      WARNCFLAGS:     
      WARNCXXFLAGS:   
      CXX1XCXXFLAGS:   -std=c++11
      EXTRACFLAG:     -fvisibility=hidden
      LIBS:           
    Library:
      Shared:         yes
      Static:         yes
    Python:
      Python:         /usr/bin/python
      PYTHON_VERSION: 2.7
      pyexecdir:      ${exec_prefix}/lib64/python2.7/site-packages
      Python-dev:     yes
      PYTHON_CPPFLAGS:-I/usr/include/python2.7
      PYTHON_LDFLAGS: -L/usr/lib64 -lpython2.7
      Cython:         
    Test:
      CUnit:          no (CFLAGS='' LIBS='')
      Failmalloc:     yes
    Libs:
      OpenSSL:        yes (CFLAGS=' ' LIBS='-lssl -lcrypto  ')
      Libxml2:        no (CFLAGS='' LIBS='')
      Libev:          yes (CFLAGS='' LIBS='-lev')
      Libc-ares       yes (CFLAGS=' ' LIBS='-lcares  ')
      Libevent(SSL):  no (CFLAGS='' LIBS='')
      Jansson:        no (CFLAGS='' LIBS='')
      Jemalloc:       no (LIBS='')
      Zlib:           yes (CFLAGS=' ' LIBS='-lz  ')
      Systemd:        no (CFLAGS='' LIBS='')
      Boost CPPFLAGS: 
      Boost LDFLAGS:  
      Boost::ASIO:    
      Boost::System:  
      Boost::Thread:  
    Third-party:
      http-parser:    yes
      MRuby:          no (CFLAGS='' LIBS='')
      Neverbleed:     no
    Features:
      Applications:   yes
      HPACK tools:    no
      Libnghttp2_asio:no
      Examples:       no
      Python bindings:no
      Threading:      yes
  • make
# make

make  all-recursive
make[1]: Entering directory `./nghttp2'
Making all in lib
make[2]: Entering directory `./nghttp2/lib'
Making all in includes
make[3]: Entering directory `./nghttp2/lib/includes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `./nghttp2/lib/includes'
make[3]: Entering directory `./nghttp2/lib'
  CC       nghttp2_pq.lo
  CC       nghttp2_map.lo
  CC       nghttp2_queue.lo
  CC       nghttp2_frame.lo
  CC       nghttp2_buf.lo
  CC       nghttp2_stream.lo
  CC       nghttp2_outbound_item.lo
  CC       nghttp2_session.lo
  CC       nghttp2_submit.lo
  CC       nghttp2_helper.lo
  CC       nghttp2_npn.lo
  CC       nghttp2_hd.lo
  CC       nghttp2_hd_huffman.lo
  CC       nghttp2_hd_huffman_data.lo
  CC       nghttp2_version.lo
  CC       nghttp2_priority_spec.lo
  CC       nghttp2_option.lo
  CC       nghttp2_callbacks.lo
  CC       nghttp2_mem.lo
  CC       nghttp2_http.lo
  CC       nghttp2_rcbuf.lo
  CC       nghttp2_debug.lo
  CCLD     libnghttp2.la
make[3]: Leaving directory `./nghttp2/lib'
make[2]: Leaving directory `./nghttp2/lib'
Making all in third-party
make[2]: Entering directory `./nghttp2/third-party'
  CC       http-parser/http_parser.lo
  CCLD     libhttp-parser.la
make[2]: Leaving directory `./nghttp2/third-party'
Making all in src
make[2]: Entering directory `./nghttp2/src'
Making all in includes
make[3]: Entering directory `./nghttp2/src/includes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `./nghttp2/src/includes'
make[3]: Entering directory `./nghttp2/src'
  CXX      libnghttpx_a-util.o
  CXX      libnghttpx_a-http2.o
  CC       libnghttpx_a-timegm.o
  CXX      libnghttpx_a-app_helper.o
  CXX      libnghttpx_a-tls.o
  CXX      libnghttpx_a-shrpx_config.o
  CXX      libnghttpx_a-shrpx_accept_handler.o
  CXX      libnghttpx_a-shrpx_connection_handler.o
  CXX      libnghttpx_a-shrpx_client_handler.o
  CXX      libnghttpx_a-shrpx_http2_upstream.o
  CXX      libnghttpx_a-shrpx_https_upstream.o
  CXX      libnghttpx_a-shrpx_downstream.o
  CXX      libnghttpx_a-shrpx_downstream_connection.o
  CXX      libnghttpx_a-shrpx_http_downstream_connection.o
  CXX      libnghttpx_a-shrpx_http2_downstream_connection.o
  CXX      libnghttpx_a-shrpx_http2_session.o
  CXX      libnghttpx_a-shrpx_downstream_queue.o
  CXX      libnghttpx_a-shrpx_log.o
  CXX      libnghttpx_a-shrpx_http.o
  CXX      libnghttpx_a-shrpx_io_control.o
  CXX      libnghttpx_a-shrpx_tls.o
  CXX      libnghttpx_a-shrpx_worker.o
  CXX      libnghttpx_a-shrpx_log_config.o
  CXX      libnghttpx_a-shrpx_connect_blocker.o
  CXX      libnghttpx_a-shrpx_live_check.o
  CXX      libnghttpx_a-shrpx_downstream_connection_pool.o
  CXX      libnghttpx_a-shrpx_rate_limit.o
  CXX      libnghttpx_a-shrpx_connection.o
  CXX      libnghttpx_a-shrpx_memcached_dispatcher.o
  CXX      libnghttpx_a-shrpx_memcached_connection.o
  CXX      libnghttpx_a-shrpx_worker_process.o
  CXX      libnghttpx_a-shrpx_signal.o
  CXX      libnghttpx_a-shrpx_router.o
  CXX      libnghttpx_a-shrpx_api_downstream_connection.o
  CXX      libnghttpx_a-shrpx_health_monitor_downstream_connection.o
  CXX      libnghttpx_a-shrpx_exec.o
  CXX      libnghttpx_a-shrpx_dns_resolver.o
  CXX      libnghttpx_a-shrpx_dual_dns_resolver.o
  CXX      libnghttpx_a-shrpx_dns_tracker.o
  CC       libnghttpx_a-xsi_strerror.o
  AR       libnghttpx.a
  CXX      util.o
  CXX      http2.o
  CC       timegm.o
  CXX      app_helper.o
  CC       nghttp2_gzip.o
  CXX      nghttp.o
  CXX      tls.o
  CXXLD    nghttp
  CXX      nghttpd.o
  CXX      HttpServer.o
  CXXLD    nghttpd
  CXX      nghttpx-shrpx.o
  CXXLD    nghttpx
  CXX      h2load.o
  CXX      h2load_http2_session.o
  CXX      h2load_http1_session.o
  CXXLD    h2load
make[3]: Leaving directory `./nghttp2/src'
make[2]: Leaving directory `./nghttp2/src'
Making all in examples
make[2]: Entering directory `./nghttp2/examples'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `./nghttp2/examples'
Making all in python
make[2]: Entering directory `./nghttp2/python'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `./nghttp2/python'
Making all in tests
make[2]: Entering directory `./nghttp2/tests'
Making all in testdata
make[3]: Entering directory `./nghttp2/tests/testdata'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `./nghttp2/tests/testdata'
make[3]: Entering directory `./nghttp2/tests'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `./nghttp2/tests'
make[2]: Leaving directory `./nghttp2/tests'
Making all in integration-tests
make[2]: Entering directory `./nghttp2/integration-tests'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `./nghttp2/integration-tests'
Making all in doc
make[2]: Entering directory `./nghttp2/doc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `./nghttp2/doc'
Making all in contrib
make[2]: Entering directory `./nghttp2/contrib'
rm -f nghttpx-init nghttpx-init.tmp
sed -e 's|@bindir[@]|/usr/local/bin|g' nghttpx-init.in > nghttpx-init.tmp
chmod +x nghttpx-init.tmp
mv nghttpx-init.tmp nghttpx-init
sed -e 's|@bindir[@]|/usr/local/bin|g' nghttpx.service.in > nghttpx.service
sed -e 's|@bindir[@]|/usr/local/bin|g' nghttpx-upstart.conf.in > nghttpx-upstart.conf
make[2]: Leaving directory `./nghttp2/contrib'
Making all in script
make[2]: Entering directory `./nghttp2/script'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `./nghttp2/script'
make[2]: Entering directory `./nghttp2'
make[2]: Leaving directory `./nghttp2'
make[1]: Leaving directory `./nghttp2'
  • make install

./nghttp2/src/h2load
./nghttp2/src/nghttp
./nghttp2/src/nghttpd
./nghttp2/src/nghttpx

Done :smiley: :tada:

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1