Re: ntdll : Do not error out on AMD-64 architecture when compiling win64.
"Erik de Castro Lopo" <mle+win(a)mega-nerd.com> wrote:
+#if WINE_IS_WIN64 + if (nt->FileHeader.Machine == IMAGE_FILE_MACHINE_AMD64) + MESSAGE("Support for AMD-64 architecture in progress but not yet working\n"); + else +#endif
What's the point of this? -- Dmitry.
Dmitry Timoshkov wrote:
"Erik de Castro Lopo" <mle+win(a)mega-nerd.com> wrote:
+#if WINE_IS_WIN64 + if (nt->FileHeader.Machine == IMAGE_FILE_MACHINE_AMD64) + MESSAGE("Support for AMD-64 architecture in progress but not yet working\n"); + else +#endif
What's the point of this?
At the moment trying to get wine to execute a win64 binary fails if nt->FileHeader.Machine != IMAGE_FILE_MACHINE_I386 This patch along with the last one which added WINE_IS_WIN64 allows an attempt to be made to execute a WIN64 binary. Erik -- ----------------------------------------------------------------- Erik de Castro Lopo ----------------------------------------------------------------- C++: The power, elegance and simplicity of a hand grenade.
participants (2)
-
Dmitry Timoshkov -
Erik de Castro Lopo