2

I'm building an app on a raspberry pi 3. I'm using Qt. Will the generated binary work on raspberry pi 2?

Thanks

Julien
  • 131
  • 2

1 Answers1

-1
  • If you build for RPi1, CM1 and Zero it will run on any 32-bit OS on any model.
  • If you build for 32-bit 2B it will run on 2B, 3B, 3B+, 3A+ or CM3.
  • If you build for 3B, 3B+ 3A+ or CM3 it will only run on a model 3 - those are also able to run 64-bit.

Compiler options for Raspberries has the full details.

Dougie
  • 5,381
  • 11
  • 22
  • 30