diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-02-14 08:55:27 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-02-14 08:55:27 -0500 |
commit | 49b3cd306e60b9d889c775cb2ebb709f80dd8ae9 (patch) | |
tree | 28b1b251c83d45ca0b3c2df7690fb42b53114958 /tools/lib/api | |
parent | 093b75ef5995ea35d7f6bdb6c7b32a42a1999813 (diff) |
tools: Set the maximum optimization level according to the compiler being used
To avoid this when using clang:
warning: optimization level '-O6' is not supported; using '-O3' instead
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-kaghp8ddvzdsg03putemcq96@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/api')
-rw-r--r-- | tools/lib/api/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile index adba83b325d5..eb6e0b36bfc1 100644 --- a/tools/lib/api/Makefile +++ b/tools/lib/api/Makefile | |||
@@ -17,7 +17,13 @@ MAKEFLAGS += --no-print-directory | |||
17 | LIBFILE = $(OUTPUT)libapi.a | 17 | LIBFILE = $(OUTPUT)libapi.a |
18 | 18 | ||
19 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) | 19 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) |
20 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC | 20 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC |
21 | |||
22 | ifeq ($(CC), clang) | ||
23 | CFLAGS += -O3 | ||
24 | else | ||
25 | CFLAGS += -O6 | ||
26 | endif | ||
21 | 27 | ||
22 | # Treat warnings as errors unless directed not to | 28 | # Treat warnings as errors unless directed not to |
23 | ifneq ($(WERROR),0) | 29 | ifneq ($(WERROR),0) |