From 00b92e3d814fa3d051523cfad592b1b8304d5148 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Mon, 15 Dec 2025 14:07:47 +1100 Subject: [PATCH] [orc-rt] Add config.h.in (missing from 7ccf968d0bf). This file was accidentally left out of commit 7ccf968d0bf. --- orc-rt/include/orc-rt-c/config.h.in | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 orc-rt/include/orc-rt-c/config.h.in diff --git a/orc-rt/include/orc-rt-c/config.h.in b/orc-rt/include/orc-rt-c/config.h.in new file mode 100644 index 000000000000..0b2bf4801bb3 --- /dev/null +++ b/orc-rt/include/orc-rt-c/config.h.in @@ -0,0 +1,19 @@ +/*===- orc-rt-c/config.h - ORC-RT build configuration -------------*- C -*-===*\ +|* *| +|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| +|* Exceptions. *| +|* See https://llvm.org/LICENSE.txt for license information. *| +|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| +|* *| +\*===----------------------------------------------------------------------===*/ + +#ifndef ORC_RT_C_CONFIG_H +#define ORC_RT_C_CONFIG_H + +/* Define to 1 if RTTI is enabled */ +#cmakedefine01 ORC_RT_ENABLE_RTTI + +/* Define to 1 if exceptions are enabled */ +#cmakedefine01 ORC_RT_ENABLE_EXCEPTIONS + +#endif /* ORC_RT_C_CONFIG_H */