Skip to content
Snippets Groups Projects
Commit c72f12cb authored by Diego Biurrun's avatar Diego Biurrun
Browse files

configure: suncc: Add -xc99 to dependency flags, required on Solaris

parent 804d7a1a
No related branches found
No related tags found
No related merge requests found
...@@ -2196,7 +2196,7 @@ probe_cc(){ ...@@ -2196,7 +2196,7 @@ probe_cc(){
_type=suncc _type=suncc
_ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-) _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
_DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)' _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
_DEPFLAGS='-xM1' _DEPFLAGS='-xM1 -xc99'
_ldflags='-std=c99' _ldflags='-std=c99'
_cflags_speed='-O5' _cflags_speed='-O5'
_cflags_size='-O5 -xspace' _cflags_size='-O5 -xspace'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment