File: get-flags.mk

package info (click to toggle)
llama.cpp 7593%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 71,012 kB
  • sloc: cpp: 329,391; ansic: 48,249; python: 32,103; lisp: 10,053; sh: 6,070; objc: 1,349; javascript: 924; xml: 384; makefile: 233
file content (38 lines) | stat: -rw-r--r-- 1,297 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
ifeq '' '$(findstring clang,$(shell $(GF_CC) --version))'
	GF_CC_IS_GCC = 1
	GF_CC_VER := $(shell { $(GF_CC) -dumpfullversion 2>/dev/null; echo; $(GF_CC) -dumpversion; } | awk -F. '/./ { printf("%02d%02d%02d", $$1, $$2, $$3); exit }')
else
	GF_CC_IS_CLANG = 1
	ifeq '' '$(findstring Apple,$(shell $(GF_CC) --version))'
		GF_CC_IS_LLVM_CLANG = 1
	else
		GF_CC_IS_APPLE_CLANG = 1
	endif
	GF_CC_VER := \
		$(shell $(GF_CC) --version | sed -n 's/^.* version \([0-9.]*\).*$$/\1/p' \
		| awk -F. '{ printf("%02d%02d%02d", $$1, $$2, $$3) }')
endif

ifeq ($(GF_CC_IS_CLANG), 1)
	# clang options
	GF_CFLAGS   = -Wunreachable-code-break -Wunreachable-code-return
	GF_CXXFLAGS = -Wunreachable-code-break -Wunreachable-code-return -Wmissing-prototypes -Wextra-semi

	ifneq '' '$(and $(GF_CC_IS_LLVM_CLANG),$(filter 1,$(shell expr $(GF_CC_VER) \>= 030800)))'
		GF_CFLAGS += -Wdouble-promotion
	endif
	ifneq '' '$(and $(GF_CC_IS_APPLE_CLANG),$(filter 1,$(shell expr $(GF_CC_VER) \>= 070300)))'
		GF_CFLAGS += -Wdouble-promotion
	endif
else
	# gcc options
	GF_CFLAGS   = -Wdouble-promotion
	GF_CXXFLAGS = -Wno-array-bounds

	ifeq ($(shell expr $(GF_CC_VER) \>= 070100), 1)
		GF_CXXFLAGS += -Wno-format-truncation
	endif
	ifeq ($(shell expr $(GF_CC_VER) \>= 080100), 1)
		GF_CXXFLAGS += -Wextra-semi
	endif
endif