From 8d685dc581422dd8dab0d4190dfc108b91c82e3b Mon Sep 17 00:00:00 2001 From: Albert S Date: Wed, 29 Sep 2021 18:33:37 +0200 Subject: [PATCH] Makefile: Remove -lseccomp as we don't need it anymore --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8828037..d76391a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CXXFLAGS=-std=c++17 -O0 -g -no-pie -pipe -MMD -Wall -Wextra RELEASE_CXXFLAGS=-std=c++17 -O3 -pipe -MMD -Wall -Wextra -LDFLAGS=-lsqlite3 -lpthread -lcrypto -lstdc++fs -lseccomp +LDFLAGS=-lsqlite3 -lpthread -lcrypto -lstdc++fs INCLUDEFLAGS=-I submodules/sqlitemoderncpp/hdr -I submodules/cpp-httplib -I submodules/qssb.h CXX=g++