From 0ae9ba5a657b30dadb35049fc586b223530ccbbe Mon Sep 17 00:00:00 2001 From: Russ Keldorph Date: Mon, 11 Feb 2019 11:42:29 -0800 Subject: [PATCH] Locally define DLLEXPORT in ee_il_dll.cpp This prevents a desktop build break due to DLLEXPORT being undefined. If you know of a better place to put this, I'm happy to try it. Otherwise, this should unblock the desktop build. --- src/jit/ee_il_dll.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jit/ee_il_dll.cpp b/src/jit/ee_il_dll.cpp index 23f4e6b..e24de9d 100644 --- a/src/jit/ee_il_dll.cpp +++ b/src/jit/ee_il_dll.cpp @@ -26,6 +26,10 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX #include // For EINVAL #endif +#ifndef DLLEXPORT +#define DLLEXPORT +#endif // !DLLEXPORT + /*****************************************************************************/ FILE* jitstdout = nullptr; -- 2.7.4