diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2017-01-11 17:17:18 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-01-12 21:40:00 +0100 |
commit | 8474e7d7e83e92f3d7118311e2e35dc86dcc3ef5 (patch) | |
tree | 70d393f85973458c3c92edeba864794e1cc78165 | |
parent | 3051cd9265b8eb29742a66fc67db083289fa07e5 (diff) |
util/cbfstool: compile with -O2 by default
This speeds up the lzma encoder approximately four-fold.
Change-Id: Ibf896098799693ddd0f8a6c74bda2e518ecea869
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/18098
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | util/cbfstool/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc index d666f6a06f..6882cbaf60 100644 --- a/util/cbfstool/Makefile.inc +++ b/util/cbfstool/Makefile.inc @@ -65,6 +65,7 @@ ifwiobj += common.o TOOLCFLAGS ?= -Werror -Wall -Wextra TOOLCFLAGS += -Wcast-qual -Wmissing-prototypes -Wredundant-decls -Wshadow TOOLCFLAGS += -Wstrict-prototypes -Wwrite-strings +TOOLCFLAGS += -O2 TOOLCPPFLAGS ?= -D_DEFAULT_SOURCE # memccpy() from string.h TOOLCPPFLAGS += -D_XOPEN_SOURCE=700 # strdup() from string.h TOOLCPPFLAGS += -I$(top)/util/cbfstool/flashmap |