What am I supposed to do with the .bin file?

I am coding in C and am coding on the Linux sub system on Windows. I got the code to compile to a .bin file because in the documentation it says:

device
builds a .bin file for the device

But I can't figure out how to get the .bin on the device. If I sideload it through Play.Date then it wants a pdx file.

Any help would be greatly appreciated, I'm curious to what I'm missing.

You're right: merely a .bin file is not enough—you need a .pdx bundle:

When building for the device a pdex.bin file is created. The game launcher looks for this file in the compiled .pdx bundle and loads it into memory if it exists.

https://sdk.play.date/2.0.3/Inside%20Playdate%20with%20C.html#_game_initialization:

From the same documentation you're supposedly referencing:

Make options are:

simulator
builds a .so file for the Simulator
pdc
builds a .pdx bundle that will run in the Simulator
device
builds a .bin file for the device
<none>
builds a .pdx bundle suitable for both the Simulator and device

https://sdk.play.date/2.0.3/Inside%20Playdate%20with%20C.html#_make

Try the last make target: no target, just run make.

I got it to make the pdx, I put it on the device, and it crashes instantly on launch even though it compiled with no errors. This is the same thing that was happening when I tried to get it to compile on a arm box. Is there anyway to see the logs when it's running on device to figure out why it's crashing? It runs fine in the simulator

I was just reading C-based game crashing only on device (-;

Ah, thanks for that info. So pretty much right now I'm screwed until the update comes out. Cool.

I'm sorry: I've linked the last reply in that topic. I've just edited the link to refer to the entire post. Read it from the top and all the way through. It has many suggestions that you can try before you give up.

2 Likes

If it's crashing on launch it's likely not built correctly. How are you building, what toolchain are you using? You noted the linux subsystem on Windows, are you using makefiles or cmake? Have you checked to see if your .bin file is the correct architecture? Did you make any changes to our base make/cmake files? If so, what did you do?

Oh, also, can you successfully build Hello World or one of our sample apps and get it running on the device?

2 Likes