GarvitDeveloper
GarvitDeveloper

Reputation: 11

How to convert exe to elf

I made a game using JavaScript. I converted it to exe using NW.JS, but I want to run the game on Playstation. I found out from the Internet that you need .ELF files to run it on console. I want to know how to convert .exe to.elf.

Upvotes: -1

Views: 427

Answers (1)

Quentin
Quentin

Reputation: 944297

You can't.

There is more platform-specificness to a piece of software than just the type of binary file it ends up in.

If you want to run it on the console you'll need to use a framework that supports that kind of console in the first place.

Upvotes: 3

Related Questions