mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-17 07:33:57 +00:00
Add -O2 compilation by default and -g debug info
Also store GCC command-line switches in the binaries for easier debugging.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
# Use GCC level 2 optimization by default
|
||||
# Might be overridden below
|
||||
ADDITIONAL_OBJCFLAGS=-O2
|
||||
ifeq ($(test-uninitialized),yes)
|
||||
ifeq ($(debug),yes)
|
||||
ADDITIONAL_OBJCFLAGS=-O0
|
||||
@@ -5,3 +8,9 @@ else
|
||||
ADDITIONAL_OBJCFLAGS=-Wuninitialized
|
||||
endif
|
||||
endif
|
||||
# Ensure we store in the ELF files minimal debugging
|
||||
# information plus the compiler flags used; that can
|
||||
# be afterwards read with:
|
||||
# readelf -p .GCC.command.line /path/to/elf_file
|
||||
ADDITIONAL_OBJCFLAGS += -g -frecord-gcc-switches
|
||||
|
||||
|
||||
Reference in New Issue
Block a user