You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is simply based on output from:
$ rustc +nightly -Z unstable-options \
--target=arm-unknown-linux-gnueabi \
--print target-spec-json
Changes made:
- removed "unsupported-abis"
(does not build)
- added "function-sections": false
(all kernel functions should go in the .text section)
- added "relocation-model": "static"
(kernel does not support .data.rel.ro sections)
Note that the vanilla `arm-unknown-linux-gnueabi` triple lets
rustc generate the armv6 instruction set.
Signed-off-by: Sven Van Asbroeck <thesven73@gmail.com>
0 commit comments