diff options
author | wang-bin <wbsecg1@gmail.com> | 2017-03-10 04:02:13 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-03-16 20:58:52 +0100 |
commit | b573e3f4845bd1cd004df70dd0b7cf2c4c73a5f9 (patch) | |
tree | 0e7f0f3d508b13123c139a022b7869938aed641e | |
parent | e7282674a505d548746a4734cbe902a9f242eb6b (diff) | |
download | ffmpeg-b573e3f4845bd1cd004df70dd0b7cf2c4c73a5f9.tar.gz |
configure: clang -Oz for small size build to reduce size further
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4054,7 +4054,7 @@ probe_cc(){ _ident=$($_cc --version 2>/dev/null | head -n1) _depflags='-MMD -MF $(@:.o=.d) -MT $@' _cflags_speed='-O3' - _cflags_size='-Os' + _cflags_size='-Oz' elif $_cc -V 2>&1 | grep -q Sun; then _type=suncc _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-) |