rust: fix build with glibc, ARM and hard floats
authorDrew Young <dyoung@viridiparente.com>
Mon, 9 Oct 2023 21:19:50 +0000 (17:19 -0400)
committerTianling Shen <cnsztl@gmail.com>
Mon, 16 Oct 2023 01:01:43 +0000 (09:01 +0800)
commit3d799c3eeedfe8813ca3fb2debadffb231f621c1
treef1d79e24d2e6fad8988e07475b33b8390b3512c9
parentf151ab8c0e6becdabc146e3c2fd1aa2d02708bd4
rust: fix build with glibc, ARM and hard floats

Patch the target triple for Rust with glibc to include hard floating
point support.

The GNU target triple used elsewhere does not include hard float support,
instead `-mfloat-abi=hard` is passed separately. For Rust it must be
included in the target triple. This was already being done for musl,
this commit adds the same patching for glibc.

Without this patch Rust compilation fails with an error like this
(abbreviated to fit the line length):

    ld: error: libstd.so uses VFP register arguments, ... does not
    ld: failed to merge target specific data of file ...

Signed-off-by: Drew Young <dyoung@viridiparente.com>
lang/rust/rust-values.mk