Commit 9137e8073ef6826e49a204ebf03f4f33cd3f7e57
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.
Author: xaizek
Author date (UTC): 2026-06-17 12:51
Committer name: xaizek
Committer date (UTC): 2026-06-17 12:51
Parent(s): a234370cebf9c5fe05634e42a4dacff01f78e15e
Signing key: 99DC5E4DB05F6BE2
Tree: 7cd9383dff4986249ec120ce7740b62df0bcd0d2
| File |
Lines added |
Lines deleted |
| Makefile |
0 |
1 |
| File Makefile changed (mode: 100644) (index 310bf20..bb42381) |
| 1 |
1 |
CXXFLAGS += -std=c++11 -Wall -Wextra -Werror -MMD -I$(abspath src) |
CXXFLAGS += -std=c++11 -Wall -Wextra -Werror -MMD -I$(abspath src) |
| 2 |
2 |
LDFLAGS += -lboost_program_options -lboost_filesystem -lboost_iostreams |
LDFLAGS += -lboost_program_options -lboost_filesystem -lboost_iostreams |
| 3 |
|
LDFLAGS += -lboost_system |
|
| 4 |
3 |
|
|
| 5 |
4 |
INSTALL := install -D |
INSTALL := install -D |
| 6 |
5 |
|
|