Skip to content

Commit

Permalink
build: update c client to v6.6.0 (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Apr 24, 2024
1 parent a8e4ded commit 744aacd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -59,14 +59,14 @@ DYNAMIC_OPTIONS =

CC ?= cc

DWARF := $(shell $(CC) -Wall -Wextra -O2 -o /tmp/asflags_$${$$} src/flags.c; \
DWARF := $(shell $(CC) -Wall -Wextra -O0 -g -o /tmp/asflags_$${$$} src/flags.c; \
/tmp/asflags_$${$$}; rm /tmp/asflags_$${$$})
CFLAGS += -std=gnu11 $(DWARF) -O2 -fno-common -fno-strict-aliasing \
CFLAGS += -std=gnu11 $(DWARF) -O0 -g -fno-common -fno-strict-aliasing \
-Wall -Wextra -Wconversion -Wsign-conversion -Wmissing-declarations \
-Wno-implicit-fallthrough -Wno-unused-result -Wno-typedef-redefinition \
-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -DMARCH_$(ARCH) \
-DTOOL_VERSION=\"$(VERSION)\"
CXXFLAGS := -std=c++14 $(DWARF) -O2 -fno-common -fno-strict-aliasing \
CXXFLAGS := -std=c++14 $(DWARF) -O0 -g -fno-common -fno-strict-aliasing \
-Wall -Wextra -Wconversion -Wsign-conversion -Wmissing-declarations \
-Wno-implicit-fallthrough -Wno-unused-result \
-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -DMARCH_$(ARCH) \
Expand Down

0 comments on commit 744aacd

Please sign in to comment.