diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-04-18 02:20:04 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-04-18 02:20:04 +0200 |
commit | 2ade23a7ada650a1aa6a857e3d2e1c136a8708d8 (patch) | |
tree | 16644d7ebd1e87bfd43da676a18afccc6e146a3a /configure | |
parent | bdfe60c769f4d4e71a360fe02f06cdb9c039cf35 (diff) | |
download | ffmpeg-2ade23a7ada650a1aa6a857e3d2e1c136a8708d8.tar.gz |
Fix pgc compilation with --disable-optimizations.
-O1 disables dead code elimination on pgc, use -O instead.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2806,7 +2806,7 @@ probe_cc(){ opt_common='-alias=ansi -Mdse -Mlre -Mpre' _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common" _cflags_size="-O2 -Munroll=c:1 $opt_common" - _cflags_noopt="-O1" + _cflags_noopt="-O" _flags_filter=pgi_flags elif $_cc 2>&1 | grep -q Microsoft; then _type=msvc |