.exe files from source code
-
I hav created a program and i need to convert d source code into .exe file so as to make it platform-independent.can u please help me how to do this.
shakins wrote:
I hav created a program and i need to convert d source code into .exe file so as to make it platform-independent.can u please help me how to do this.
This is not possible; an exe file is compiled for a specific target platform. You need to make the source platform independent and then compile that source on each platform that you want to run it on, to create a compatible object.
-
I hav created a program and i need to convert d source code into .exe file so as to make it platform-independent.can u please help me how to do this.
If you've written your application in .NET, then it's not platform independent. It will only run in Operating Systems that have the .NET framework. You could possibly compile against Mono, but that still isn't platform independent, for instance it won't run on an old VAX server.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
I hav created a program and i need to convert d source code into .exe file so as to make it platform-independent.can u please help me how to do this.
shakins wrote:
convert d source code into .exe
You'll need a d compiler. Very few people here use d.
shakins wrote:
make it platform-independent
That's unachievable.
-
shakins wrote:
I hav created a program and i need to convert d source code into .exe file so as to make it platform-independent.can u please help me how to do this.
This is not possible; an exe file is compiled for a specific target platform. You need to make the source platform independent and then compile that source on each platform that you want to run it on, to create a compatible object.
You need a .NET Reflector refer the link http://www.red-gate.com/products/reflector/[^]
ZAK
-
You need a .NET Reflector refer the link http://www.red-gate.com/products/reflector/[^]
ZAK
-
zaksoftwaredeveloper wrote:
You need a .NET Reflector
How will that help to make a program platform independent?
He wasn't replying to the OP, he was replying to you. Perhaps he just thinks you want Reflector and have forgotten where it is now since Lutz sold it. :rolleyes:
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
He wasn't replying to the OP, he was replying to you. Perhaps he just thinks you want Reflector and have forgotten where it is now since Lutz sold it. :rolleyes:
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.