diff options
author | Patrick Venture <venture@google.com> | 2018-11-09 08:36:11 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2018-11-09 08:36:11 -0800 |
commit | 45e428a2b22f5ba134fa07ede6be1f99d12a6c2c (patch) | |
tree | f5e9377413ac724c7d0f3268693e5f82b533d433 | |
parent | 904f24ff7e5508327928e34a0397801c3b239544 (diff) | |
download | phosphor-ipmi-blobs-45e428a2b22f5ba134fa07ede6be1f99d12a6c2c.tar.gz phosphor-ipmi-blobs-45e428a2b22f5ba134fa07ede6be1f99d12a6c2c.zip |
build: Add -flto to CXXFLAGS
Add -flto to CXXFLAGS to allow build optimization.
Change-Id: Icc7bd996bd512a0d84a35b6a0449f69611a69de1
Signed-off-by: Patrick Venture <venture@google.com>
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ebc0f7c..3564cf5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,8 @@ libblobcmds_la_LDFLAGS = \ libblobcmds_la_CXXFLAGS = \ $(SYSTEMD_CFLAGS) \ - $(PHOSPHOR_LOGGING_CFLAGS) + $(PHOSPHOR_LOGGING_CFLAGS) \ + -flto nobase_include_HEADERS = \ blobs-ipmid/blobs.hpp \ |