diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-22 03:25:27 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-22 03:25:27 +0000 |
commit | 587d24ff252352144dfe60b73915e36e5a80502b (patch) | |
tree | c4a4050e7c3c24927e9c12da2ea4d43dba5871ec /configure | |
parent | 34e52abb626c692e19012f9c32c1681141a19cfb (diff) | |
download | ffmpeg-587d24ff252352144dfe60b73915e36e5a80502b.tar.gz |
Suppress TMS470 warnings about alignment directives
Originally committed as revision 21380 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1696,6 +1696,7 @@ elif $cc -version 2>/dev/null | grep -q TMS470; then -Os) echo -O3 -mf=2 ;; -O[0-3]) echo $flag -mf=5 ;; -g) echo -g -mn ;; + -pds=*) echo $flag ;; esac done } @@ -2648,6 +2649,8 @@ elif enabled clang; then elif enabled armcc; then # 2523: use of inline assembler is deprecated add_cflags -Wrvct,--diag_suppress=2523 +elif enabled tms470; then + add_cflags -pds=824 -pds=837 fi if enabled gprof; then |