From ac7991b0d783a5b556396786d22b628a297086d2 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Sat, 30 Apr 2022 14:18:25 +0200 Subject: [PATCH] llvm: added forgotten llvm-config.h file --- llvm/llvm-config.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 llvm/llvm-config.h diff --git a/llvm/llvm-config.h b/llvm/llvm-config.h new file mode 100644 index 0000000..ccc313f --- /dev/null +++ b/llvm/llvm-config.h @@ -0,0 +1,12 @@ +/* llvm-config.h stub */ + +#ifndef __STUB__LLVMCONFIG_H__ +#define __STUB__LLVMCONFIG_H__ + +#if defined(__x86_64__) +#include "llvm-config-64.h" +#else +#include "llvm-config-32.h" +#endif + +#endif -- 2.26.2