Rust to run in different types of Windows

Hi people:)
I am looking for versions of Rust (including docs) for different (old) versions of Windows.
Specially:

  1. What is the newest possible version of Rust, able to run on WindowsXP?
  2. Was there ever a version of Rust, able to run on Win2K and/or WinNT4?

This is for a Demo-Project running on not-TO-old-vintage-systems.
Thanx a lot,
Holger

You might want to check this blog post - this is about cross-compiling to old Windows, but maybe you'll be able to pick some ideas for your goals.

hmm, this looks like a project for it self...
And - yes it sounds like lot of fun.
But in fact I was hoping just for two old versions of Rust. One for XP, one for NT, or 2K.
If I have to cross-compile Rust, this project becomes to time-insensitive.

As far as I know there was never a version of the Rust compiler that could run on Windows XP. The compiler uses APIs for things like symbolic links and locks that don't exist in XP and earlier, and it’s been a long time since LLVM supported running on XP.

For a while you could carefully compile some Rust code for XP, but that stopped working and was removed after Firefox no longer supported running on XP.

2 Likes

OK
Never mind. I'll have a look then for alternatives.
Best rgds,
Holger

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.