This repository was archived by the owner on Mar 7, 2021. It is now read-only.
This repository was archived by the owner on Mar 7, 2021. It is now read-only.
i386 support #43
Open
Description
While looking at something else I remembered that the i386 kernel builds with -mregparm=3 -freg-struct-return
, i.e., pass the first three arguments in registers (instead of on the stack, the normal ABI) and try to return structures in a register if they fit. I'm not sure if Rust and/or bindgen know how to deal with this.
If they don't, put a note in README.md and move on. If they do, let's add i386 to CI at some point....