Makefile: Remove -lseccomp as we don't need it anymore

This commit is contained in:
Albert S. 2021-09-29 18:33:37 +02:00
父節點 ed43f5f700
當前提交 8d685dc581
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -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++