0

I have an exe file compiled with Delphi 7. I want it to work on OSX (in this case, Mac OS Sierra). Is there any way to compile the exe file as an OSX package and install/run it on OSX?

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
  • Converting to Firemonkey is not an option ? – user763539 Jan 01 '17 at 14:12
  • @user763539 i thought that too but it will take too long of time, in this case wine enumator working fine, but maybe changing language and making programs cross platrom seems a nice option too (maybe using github framework electron) – Emre acikgoz Jan 01 '17 at 21:20

1 Answers1

4

Delphi 7 can produce only Windows executables. Your only possibility to run the executable on OSX is to run it under the WINE emulator. Whether or not it will run correctly under WINE depends on what the program actually does. You will just have to try it and see what happens.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490