https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3468e27cfe4bb41af2829…
commit 3468e27cfe4bb41af2829b93f56ff7ee149d3bf5
Author: Hervé Poussineau <hpoussin(a)reactos.org>
AuthorDate: Tue Dec 29 19:15:21 2020 +0100
Commit: Hervé Poussineau <hpoussin(a)reactos.org>
CommitDate: Tue Jan 5 14:19:45 2021 +0100
[SDK] Fix hack for GCC, so that it works on GCC x86 and GCC x64
---
sdk/include/psdk/delayimp.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/include/psdk/delayimp.h b/sdk/include/psdk/delayimp.h
index da87b53514b..266e920f082 100644
--- a/sdk/include/psdk/delayimp.h
+++ b/sdk/include/psdk/delayimp.h
@@ -3,7 +3,7 @@
#ifdef __GNUC__
/* Hack, for bug in ld. Will be removed soon. */
-#define __ImageBase _image_base__
+#define __ImageBase __MINGW_LSYMBOL(_image_base__)
#endif
#if defined(__cplusplus)