Goaccess: Create precompiled binaries

Created on 1 Apr 2020  路  1Comment  路  Source: allinurl/goaccess

I realize there's compile instructions etc but a pre-compiled binary that includes dependencies would make it much easier for non-root users. E.g. like ripgrep does https://github.com/BurntSushi/ripgrep/releases

build dependencies for review

Most helpful comment

Just wanted to share that I managed to compile GoAccess as STATIC binary, on lubuntu.

  1. Follow official guide: https://goaccess.io/download#build
  2. make sure to
    apt-get install build-essential
    apt-get install libncursesw5-dev libgeoip-dev
  3. build with the following:
    ./configure --enable-geoip=mmdb --enable-utf8 CFLAGS="-static" LIBS="-lncursesw -ltinfo"
    make LDFLAGS="-static"

Enjoy :-)

>All comments

Just wanted to share that I managed to compile GoAccess as STATIC binary, on lubuntu.

  1. Follow official guide: https://goaccess.io/download#build
  2. make sure to
    apt-get install build-essential
    apt-get install libncursesw5-dev libgeoip-dev
  3. build with the following:
    ./configure --enable-geoip=mmdb --enable-utf8 CFLAGS="-static" LIBS="-lncursesw -ltinfo"
    make LDFLAGS="-static"

Enjoy :-)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

g33kphr33k picture g33kphr33k  路  3Comments

securixhk picture securixhk  路  3Comments

SergioDG-YCC picture SergioDG-YCC  路  3Comments

konungrl picture konungrl  路  3Comments

canepa picture canepa  路  3Comments