문제

I have recently converted My visual studio solution to 64 bit from 32 bit. But, I have 1 machine which is running Windows Server 2003 (32 bit).Can I deploy and run these newly built 64 bit dlls on this 32 bit machine?

도움이 되었습니까?

해결책

Basically, the answer is no.

If the underlying hardware is 32-bit, then it definitely won't support 64-bit instructions.

If the hardware is 64-bit (and the OS is just 32-bit), it's possible in theory, but would require the kernel to not only setup a 64-bit code segment, but to also setup 64-bit paging (I think). Since I doubt the 32-bit Windows kernel supports either of these, then it's not possible.

다른 팁

Yes you can using third party software like http://www.vmware.com/products/ BUT don't expect much from the performance!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top