forked from FFmpeg/FFmpeg
Detect Sun Studio compiler and set appropriate variables.
Add dependency generation commands compatible with Sun Studio. patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20397 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4f99c31c39
commit
2a472e9c5d
1 changed files with 5 additions and 0 deletions
5
configure
vendored
5
configure
vendored
|
@ -1594,6 +1594,11 @@ elif $cc -v 2>&1 | grep -q clang; then
|
||||||
cc_version=__VERSION__
|
cc_version=__VERSION__
|
||||||
CC_DEPFLAGS='-MMD'
|
CC_DEPFLAGS='-MMD'
|
||||||
AS_DEPFLAGS='-MMD'
|
AS_DEPFLAGS='-MMD'
|
||||||
|
elif $cc -V 2>&1 | grep -q Sun; then
|
||||||
|
cc_type=suncc
|
||||||
|
cc_version="AV_STRINGIFY(__SUNPRO_C)"
|
||||||
|
DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\\\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
|
||||||
|
DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
|
test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
|
||||||
|
|
Loading…
Add table
Reference in a new issue