blob: 84c234d86bae67721a4f1ec04c39b653ef24ae1d [file] [log] [blame]
Michael Kruse54f37132025-02-16 12:25:311/*===-- 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-exception
6 *
7 *===----------------------------------------------------------------------===*/
8
9#ifndef FORTRAN_RUNTIME_CONFIG_H
10#define FORTRAN_RUNTIME_CONFIG_H
11
12/* Define to 1 if you have the `strerror_r' function. */
13#cmakedefine01 HAVE_STRERROR_R
14
15/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
16 don't. */
17#cmakedefine01 HAVE_DECL_STRERROR_S
18
Michael Kruseb55f7512025-02-16 14:39:5219/* Define to 1 if you have the `backtrace' function. */
20#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}
21
22#define BACKTRACE_HEADER <${BACKTRACE_HEADER}>
23
Michael Kruse54f37132025-02-16 12:25:3124#endif