blob: 701ebffe7eda4244a15cd946241e9cdd4bb94dd3 [file] [log] [blame]
#
# Copyright 2014-2016 Nest Labs Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# _AX_CHECK_COMPILER_OPTION_WITH_VAR(language, variable, option)
#
# language - The autoconf language (C, C++, Objective C, Objective C++,
# etc.).
# variable - The variable to add the checked compiler option to.
# option - The compiler flag to check.
#
# Add, if supported, the specified compiler flag for the compiler selected
# for the specified language to the provided variable.
# ----------------------------------------------------------------------------
AC_DEFUN([_AX_CHECK_COMPILER_OPTION_WITH_VAR],
[
AC_LANG_PUSH($1)
AC_MSG_CHECKING([whether the _AC_LANG compiler understands $3])
SAVE_[]_AC_LANG_PREFIX[]FLAGS=${_AC_LANG_PREFIX[]FLAGS}
SAVE_$2=${$2}
_AC_LANG_PREFIX[]FLAGS=$3
AC_TRY_COMPILE(,[;],AC_MSG_RESULT([yes]); _AC_LANG_PREFIX[]FLAGS="${SAVE_[]_AC_LANG_PREFIX[]FLAGS}"; $2="${SAVE_$2} $3",AC_MSG_RESULT([no]); _AC_LANG_PREFIX[]FLAGS=${SAVE_[]_AC_LANG_PREFIX[]FLAGS}; $2=${SAVE_$2});
unset SAVE_[]_AC_LANG_PREFIX[]FLAGS
unset SAVE_$2
AC_LANG_POP($1)
])
#
# _AX_CHECK_COMPILER_OPTION(language, option)
#
# language - The autoconf language (C, C++, Objective C, Objective C++,
# etc.).
# option - The compiler flag to check.
#
# Add, if supported, the specified compiler flag for the compiler selected
# for the specified language.
# ----------------------------------------------------------------------------
AC_DEFUN([_AX_CHECK_COMPILER_OPTION],
[
AC_LANG_PUSH($1)
AC_MSG_CHECKING([whether the _AC_LANG compiler understands $2])
SAVE_[]_AC_LANG_PREFIX[]FLAGS=${_AC_LANG_PREFIX[]FLAGS}
_AC_LANG_PREFIX[]FLAGS=$2
AC_TRY_COMPILE(,[;],AC_MSG_RESULT([yes]); _AC_LANG_PREFIX[]FLAGS="${SAVE_[]_AC_LANG_PREFIX[]FLAGS} $2",AC_MSG_RESULT([no]); _AC_LANG_PREFIX[]FLAGS=${SAVE_[]_AC_LANG_PREFIX[]FLAGS});
unset SAVE_[]_AC_LANG_PREFIX[]FLAGS
AC_LANG_POP($1)
])
#
# AX_CHECK_COMPILER_OPTION(language, [variable,] option)
#
# language - The autoconf language (C, C++, Objective C, Objective C++,
# etc.).
# variable - If supplied, the variable to add the checked compiler option
# to.
# option - The compiler flag to check.
#
# Add, if supported, the specified compiler flag for the compiler selected
# for the specified language, optionally saving it to the specified variable.
# ----------------------------------------------------------------------------
AC_DEFUN([AX_CHECK_COMPILER_OPTION],
[
ifelse($#,
3,
[_AX_CHECK_COMPILER_OPTION_WITH_VAR($1, $2, $3)],
[_AX_CHECK_COMPILER_OPTION($1, $2)])
])
#
# AX_CHECK_COMPILER_OPTIONS(language, [variable,] option ...)
#
# language - The autoconf language (C, C++, Objective C, Objective C++,
# etc.).
# variable - If supplied, the variable to add the checked compiler option
# to.
# options - The compiler flags to check.
#
# Add, if supported, the specified compiler flags for the compiler selected
# for the specified language, optionally saving it to the specified variable.
# ----------------------------------------------------------------------------
AC_DEFUN([AX_CHECK_COMPILER_OPTIONS],
[
ifelse($#,
3,
[
for ax_compiler_option in [$3]; do
_AX_CHECK_COMPILER_OPTION_WITH_VAR([$1], [$2], $ax_compiler_option)
done
],
[
for ax_compiler_option in [$2]; do
_AX_CHECK_COMPILER_OPTION([$1], $ax_compiler_option)
done
])
])