Same here
**Describe the bug** When compiling for and running @klausw's advanced 3D game,⦠_Space Rocks 3D!_ on a Raspberry Pi, it crashes with the error message "Floating Point Exception". The game works well in the simulator, and has been tested without any errors [on both the PyGamer and the Meowbit](https://forum.makecode.com/t/space-rocks-3d/6334/118), indicating that this probably is an error specific to MakeCode's implementation on the Raspberry Pi and not the game code itself, akin to @nopid's [recently fixed error in the Raspberry Pi(RPi) implementation of the namespace setting](https://github.com/microsoft/pxt-arcade/issues/3812#issuecomment-1137197195). Further supporting that the error is in the compilation itself for the RPi, is the game author's testimony that the game code does not include any floating point operations at all. I have found that on Posix systems, C++ normally emits _Floating Point Exceptions_ unrelated to floating point operations, and that the exception is thrown rather on conditions of [FE_DIVBYZERO, FE_INEXACT, FE_INVALID, FE_OVERFLOW, FE_UNDERFLOW and FE_ALL_EXCEPT](https://en.cppreference.com/w/cpp/numeric/fenv/FE_exceptions). Further, I have tried debug the game gode by guarding against any obvious _divide-by-zero_ or overflow conditions(`tan(90)` etc.), to no avail and I have now reached the limits of my competence and depleted all ideas I had for pinpointing the error further. I do not master fully the nuances of integer sizes etc. on the RPi, or where to search for this bug in the pxt compiler code, but all (my) clues seem to lead in this direction. I really hope the MakeCode team or some bright individuals in the community(like @nopid) can figure out and rectify the difference between the RPi implementation and the implementations for the Web simulator, the PyGamer and the Meowbit, so that this and other future equally advanced 3D games will run also on the RPi! **To Reproduce** Steps to reproduce the behavior: 1. Go to https://arcade.makecode.com/beta/?nolocalhost=1&compile=rawELF&hw=rpi#pub:57095-73027-58575-13726 and download as .elf for general RPi or uf2 for the MakeCode Raspberry Pi image. __NB!: Very important to download from the beta version of MakeCode Arcade, since the production version is still haunted by the [Segmentation Fault error from the RPi implementation of the Settings namespace](https://github.com/microsoft/pxt-arcade/issues/3812).__ 2. Load the game onto the device and run it. 4. Observe black screen and see the _Floating Point Exception_ error **Expected behavior** Game running equally well on the RPi as in the web simulator and on the PyGamer and the Meowbit. (In the same spirit of e.g. @jwunderl's "...should probably not crash on hardware (unless it's somehow a valid error, in which case simulator should crash to match hardware :))" in [this issue with some similarities](https://github.com/microsoft/pxt-arcade/issues/4801#issue-1262188326).) **Screenshots** n/a **Desktop (please complete the following information):** See above **Smartphone (please complete the following information):** n/a **Additional context** n/a