From 3f2826bd665f8e7651c6fef7421fa9b6c5a67dde Mon Sep 17 00:00:00 2001 From: jfreegman Date: Thu, 26 Nov 2020 15:51:13 -0500 Subject: [PATCH] Add release and LLVM asan build options The release build uses -O2 and flto, and has no debug symbols. -Wmissing-field-initializer was removed due to false positives on newer versions of clang --- INSTALL.md | 2 ++ Makefile | 19 +++++++++++++++++-- cfg/targets/help.mk | 2 ++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1c1073d..24228c5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -59,6 +59,8 @@ Run `make doc` in the build directory after editing the asciidoc files to regene * `DISABLE_QRPNG` → Disable support for exporting QR as PNG * `DISABLE_DESKTOP_NOTIFY=1` → Disable desktop notifications support * `ENABLE_PYTHON=1` → Build toxic with Python scripting support + * `ENABLE_RELEASE=1` → Build toxic without debug symbols and with full compiler optimizations + * `ENABLE_ASAN=1` → Build toxic with LLVM Address Sanitizer enabled * `DESTDIR=""` Specifies the base install directory for binaries and data files (e.g.: DESTDIR="/tmp/build/pkg") diff --git a/Makefile b/Makefile index 27b9f28..f487696 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,7 @@ CFG_DIR = $(BASE_DIR)/cfg LIBS = toxcore ncursesw libconfig libcurl -CFLAGS ?= -g -CFLAGS += -std=c99 -pthread -Wall -Wpedantic -Wunused -fstack-protector-all -Wvla -Wmissing-field-initializers -Wno-missing-braces +CFLAGS ?= -std=c99 -pthread -Wall -Wpedantic -Wunused -fstack-protector-all -Wvla -Wno-missing-braces CFLAGS += '-DTOXICVER="$(VERSION)"' -DHAVE_WIDECHAR -D_XOPEN_SOURCE_EXTENDED -D_FILE_OFFSET_BITS=64 CFLAGS += '-DPACKAGE_DATADIR="$(abspath $(DATADIR))"' CFLAGS += ${USER_CFLAGS} @@ -18,6 +17,22 @@ OBJ += file_transfers.o friendlist.o global_commands.o conference_commands.o con OBJ += line_info.o log.o message_queue.o misc_tools.o name_lookup.o notify.o prompt.o qr_code.o settings.o OBJ += term_mplex.o toxic.o toxic_strings.o windows.o +# Check if debug build is enabled +RELEASE := $(shell if [ -z "$(RELEASE_ENABLED)" ] || [ "$(RELEASE_ENABLED)" = "0" ] ; then echo disabled ; else echo enabled ; fi) +ifneq ($(RELEASE), enabled) + CFLAGS += -O0 -g -DDEBUG + LDFLAGS += -O0 +else + CFLAGS += -O2 -flto + LDFLAGS += -O2 -flto +endif + +# Check if LLVM Address Sanitizer is enabled +ASAN_ENABLED := $(shell if [ -z "$(ENABLE_ASAN)" ] || [ "$(ENABLE_ASAN)" = "0" ] ; then echo disabled ; else echo enabled ; fi) +ifneq ($(ASAN_ENABLED), disabled) + CFLAGS += -fsanitize=address -fno-omit-frame-pointer -mllvm -asan-use-private-alias=1 -Wno-unused-command-line-argument +endif + # Check on wich system we are running UNAME_S = $(shell uname -s) ifeq ($(UNAME_S), Linux) diff --git a/cfg/targets/help.mk b/cfg/targets/help.mk index b7baf9a..dafb34b 100644 --- a/cfg/targets/help.mk +++ b/cfg/targets/help.mk @@ -17,6 +17,8 @@ help: @echo " DISABLE_QRCODE: Set to \"1\" to force building without QR export support" @echo " DISABLE_QRPNG: Set to \"1\" to force building without QR exported as PNG support" @echo " ENABLE_PYTHON: Set to \"1\" to enable building with Python scripting support" + @echo " RELEASE_ENABLED: Set to \"1\" to build without debug symbols and with full compiler optimizations" + @echo " ASAN_ENABLED: Set to \"1\" to build with LLVM address sanitizer enabled. @echo " USER_CFLAGS: Add custom flags to default CFLAGS" @echo " USER_LDFLAGS: Add custom flags to default LDFLAGS" @echo " PREFIX: Specify a prefix directory for binaries, data files,... (default is \"$(abspath $(PREFIX))\")"