25 lines · plain
1/*===-- cmake/config.cmake.in ---------------------------------------*- C -*-===2 *3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4 * See https://llvm.org/LICENSE.txt for license information.5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6 *7 *===----------------------------------------------------------------------===*/8 9#ifndef FORTRAN_RUNTIME_CONFIG_H10#define FORTRAN_RUNTIME_CONFIG_H11 12/* Define to 1 if you have the `strerror_r' function. */13#cmakedefine01 HAVE_STRERROR_R14 15/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you16 don't. */17#cmakedefine01 HAVE_DECL_STRERROR_S18 19/* Define to 1 if you have the `backtrace' function. */20#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}21 22#define BACKTRACE_HEADER <${BACKTRACE_HEADER}>23 24#endif25