summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile7
-rw-r--r--README3
-rw-r--r--site.exp (renamed from systemtest/config/unix.exp)0
3 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a58b18c..ee38b53 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ PROJECTNAME=minicc
VERSION=$(shell dpkg-parsechangelog --show-field Version)
DISTROS=base #debian10 ubuntu2004 ubuntu2010
-CXX=clang++-11
+CXX=clang++
#CXX=g++-10
#CXXFLAGS=-O2 -DNDEBUG
@@ -14,8 +14,7 @@ CXXFLAGS=-O0 -g -D_DEBUG
CXXFLAGS+= -Wall -I. -std=c++20
CXXFLAGS+= -fPIE -DVERSION=\"$(VERSION)\"
-
-ifeq ($(CXX),clang++-11)
+ifeq ($(CXX),clang++)
CXXFLAGS+=-stdlib=libc++
endif
@@ -31,7 +30,7 @@ LIBS=\
-lboost_regex \
-lpthread
-ifeq ($(CXX),clang++-11)
+ifeq ($(CXX),clang++)
LIBS+= \
-fuse-ld=lld-11 \
-lc++ \
diff --git a/README b/README
index 4009a62..c58eb99 100644
--- a/README
+++ b/README
@@ -7,6 +7,9 @@ Build
make clean - Clean all
make - Build all
make systemtest - Run all system tests
+make unittest - Run all unit tests
+make test - Run all tests
+
Run
---
diff --git a/systemtest/config/unix.exp b/site.exp
index 1bd9310..1bd9310 100644
--- a/systemtest/config/unix.exp
+++ b/site.exp