[Lldb-commits] [lldb] [lldb] Fixing the python_api/block tests. (PR #184647)
Vladislav Dzhidzhoev via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 4 13:50:03 PST 2026
================
@@ -1,4 +1,10 @@
-extern int fn(int a, int b) {
+#ifdef _WIN32
+#define EXPORT __declspec(dllexport)
+#else
+#define EXPORT extern
+#endif
----------------
dzhidzhoev wrote:
Please use `LLDB_DYLIB_EXPORT`/`LLDB_DYLIB_IMPORT`
https://github.com/llvm/llvm-project/pull/184647
More information about the lldb-commits
mailing list