From: Russ Keldorph Date: Mon, 11 Feb 2019 19:42:29 +0000 (-0800) Subject: Locally define DLLEXPORT in ee_il_dll.cpp X-Git-Tag: accepted/tizen/unified/20190813.215958~61^2~300 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0ae9ba5a657b30dadb35049fc586b223530ccbbe;p=platform%2Fupstream%2Fcoreclr.git 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. --- 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;