rust/library/compiler-builtins
Trevor Gross c7c5adbe64 compiler-builtins: Remove the no-f16-f128 feature
This option was used to gate `f16` and `f128` when support across
backends and targets was inconsistent. We now have the rustc builtin cfg
`target_has_reliable{f16,f128}` which has taken over this usecase.
Remove no-f16-f128 since it is now unused and redundant.
2026-01-11 07:02:27 -06:00
..
.github/workflows ci: Move the dependency installs and wall time benchmarks to scripts 2026-01-04 04:30:19 -05:00
builtins-shim compiler-builtins: Remove the no-f16-f128 feature 2026-01-11 07:02:27 -06:00
builtins-test compiler-builtins: Remove the no-f16-f128 feature 2026-01-11 07:02:27 -06:00
builtins-test-intrinsics Enable tests that were skipped on PowerPC 2025-07-24 07:18:08 -05:00
ci compiler-builtins: Remove the no-f16-f128 feature 2026-01-11 07:02:27 -06:00
compiler-builtins compiler-builtins: Remove the no-f16-f128 feature 2026-01-11 07:02:27 -06:00
crates Update Cargo.toml authors fields 2025-12-06 03:49:54 -05:00
etc Rollup merge of #144443 - WaffleLapkin:integer-target-pointer-width, r=Noratrieb 2025-08-31 13:40:34 +02:00
libm compiler-builtins: Remove the no-f16-f128 feature 2026-01-11 07:02:27 -06:00
libm-test Fix expm1f overflow threshold 2025-12-17 05:56:45 +00:00
.editorconfig Move the libm .editorconfig to root 2025-04-19 20:42:40 -04:00
.git-blame-ignore-revs Update .git-blame-ignore-revs after the libm merge 2025-04-19 20:18:22 +00:00
.gitignore bench: Update the benchmark runner to gungraun 0.17 2025-12-04 21:35:41 -05:00
.rustfmt.toml Add a .rustfmt.toml with style edition 2024 2025-04-19 19:05:49 -04:00
Cargo.toml bench: Add strip = false to the bench profile 2025-12-05 04:43:01 -05:00
CONTRIBUTING.md bench: Update the benchmark runner to gungraun 0.17 2025-12-04 21:35:41 -05:00
josh-sync.toml Add josh-sync config file 2025-07-08 08:56:34 +02:00
LICENSE.txt Update licensing information after repository refactoring 2025-04-21 06:16:12 -04:00
PUBLISHING.md ci: Update the default branch name 2025-12-04 21:35:23 -05:00
README.md fixed typo in readme 2025-05-22 11:51:54 +02:00
rust-version Prepare for merging from rust-lang/rust 2025-12-28 04:22:01 +00:00
triagebot.toml Remove [no-mentions] handler in our triagebot config 2025-12-11 12:13:10 -05:00

compiler-builtins and libm

This repository contains two main crates:

  • compiler-builtins: symbols that the compiler expects to be available at link time
  • libm: a Rust implementation of C math libraries, used to provide implementations in core.

More details are at compiler-builtins/README.md and libm/README.md.

For instructions on contributing, see CONTRIBUTING.md.

License

  • libm may be used under the MIT License
  • compiler-builtins may be used under the MIT License and the Apache License, Version 2.0 with the LLVM exception.
  • All original contributions must be under all of: the MIT license, the Apache-2.0 license, and the Apache-2.0 license with the LLVM exception.

More details are in LICENSE.txt and libm/LICENSE.txt.