xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 3aac8569d6b389e0e91d22262bcad81577b9758a

Don't try linking with boost_system
It became a header-only library in Boost 1.69 releases in December 2018
and looks like the stub library is no longer built as of Boost 1.89
released in August 2025.

Can be built as before by adding
LDFLAGS += -lboost_system
to config.mk file.
Author: xaizek
Author date (UTC): 2025-08-16 12:18
Committer name: xaizek
Committer date (UTC): 2025-08-16 12:20
Parent(s): ff4bd66f577cdba65e6b1594e45d395c86745f2b
Signing key: 99DC5E4DB05F6BE2
Tree: 37b2f29fda17fd580e53b4f9e52efabd35e6cbc7
File Lines added Lines deleted
Makefile 0 1
File Makefile changed (mode: 100644) (index f5a5c41..62d4fab)
... ... CXXFLAGS += -std=gnu++11 -Wall -Wextra -MMD -MP -I$(abspath src)
2 2 CXXFLAGS += -Wno-non-template-friend -include config.h CXXFLAGS += -Wno-non-template-friend -include config.h
3 3 LDFLAGS += $(ld_extra) -g -lsqlite3 -lgit2 -lsource-highlight -lz LDFLAGS += $(ld_extra) -g -lsqlite3 -lgit2 -lsource-highlight -lz
4 4 LDFLAGS += -lboost_filesystem -lboost_iostreams -lboost_program_options LDFLAGS += -lboost_filesystem -lboost_iostreams -lboost_program_options
5 LDFLAGS += -lboost_system
6 5
7 6 INSTALL := install -D INSTALL := install -D
8 7
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master