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?
            Asked
            
        
        
            Active
            
        
            Viewed 164 times
        
    1
            
            
        - 
                    Set the output to x86 instead of "Any"? – crashmstr Feb 14 '14 at 23:22
- 
                    @crashmstr Thank you much, I managed to find a solution on SO. Forgot that C# is compiled to the same kind of binary. – polkovnikov.ph Feb 14 '14 at 23:26
1 Answers
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