summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c414123..74d67a4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
PORTAUDIOCFLAGS=$(shell pkg-config --cflags portaudiocpp)
PORTAUDIOLIBS=$(shell pkg-config --libs portaudiocpp)
-CXX=clang++-11
+CXX=clang++-14
ifeq ($(CXXFLAGS),)
#CXXFLAGS=-O0 -g -D_DEBUG
CXXFLAGS=-O2 -DNDEBUG
endif
CXXFLAGS+=-stdlib=libc++
-CXXFLAGS+=-Wall
+CXXFLAGS+=-Wall -Wpedantic -gdwarf-4
CXXFLAGS+=-std=c++17 -fexceptions -Iexternal -fPIC
#-march=native -mtune=native # is not better for llvm
CC=clang