1

I need to run an F# program from another 32-bit executable. I don't have any access to source code of this one. How do I build 32-bit F# executable file under 64-bit OS from command line?

polkovnikov.ph
  • 6,256
  • 6
  • 44
  • 79

1 Answers1

1

So, I've finally found an answer just after I asked the question on SO. (This somehow helps, you know). The answer is here:

Running a 32-bit C# application on a 64-bit machine

You need to run corflags /32BIT+ situated at \Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\corflags.exe, so that the executable runs with 32bit on 64bit OS.

Community
  • 1
  • 1
polkovnikov.ph
  • 6,256
  • 6
  • 44
  • 79