mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:01:41 +03:00
autotools: Only probe for SGI MIPS compilers on IRIX
MIPSPro and the predecessor compiler which was part of the IDO (IRIS Development Option) were only ever shipped on the SGI IRIX operating system (with MIPSPro on 6.0+ which was released in 1994). Limit the autoconf check to IRIX when probing for these compilers to save some cycles on other platforms. Closes: #13611 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
This commit is contained in:
parent
17e51d2ec4
commit
91908f66ad
1 changed files with 6 additions and 2 deletions
|
|
@ -48,8 +48,12 @@ AC_DEFUN([CURL_CHECK_COMPILER], [
|
|||
CURL_CHECK_COMPILER_INTEL_C
|
||||
CURL_CHECK_COMPILER_CLANG
|
||||
CURL_CHECK_COMPILER_GNU_C
|
||||
CURL_CHECK_COMPILER_SGI_MIPSPRO_C
|
||||
CURL_CHECK_COMPILER_SGI_MIPS_C
|
||||
case $host in
|
||||
mips-sgi-irix*)
|
||||
CURL_CHECK_COMPILER_SGI_MIPSPRO_C
|
||||
CURL_CHECK_COMPILER_SGI_MIPS_C
|
||||
;;
|
||||
esac
|
||||
CURL_CHECK_COMPILER_SUNPRO_C
|
||||
CURL_CHECK_COMPILER_TINY_C
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue