diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-27 18:55:21 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-27 18:55:21 +0000 |
commit | 349d78fe628bf649b614fc4f19f8cf90575ee5cd (patch) | |
tree | 8d5b5b97cd1ac088ce76bf0b6e361c397774bed9 | |
parent | 6f2c05f3079dad4eec12dcc33cb46e1e37111192 (diff) | |
download | ffmpeg-349d78fe628bf649b614fc4f19f8cf90575ee5cd.tar.gz |
Detect PathScale compiler
Originally committed as revision 24552 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1934,6 +1934,14 @@ elif $cc -V 2>&1 | grep -q Sun; then esac done } +elif $cc -v 2>&1 | grep -q PathScale; then + cc_type=pathscale + cc_version=__PATHSCALE__ + cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :) + CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@' + AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@' + speed_cflags='-O2' + size_cflags='-Os' fi test -n "$cc_type" && enable $cc_type || |