Go to file
Marvin Schmidt b913c24fdd
build: Fix build on riscv64gc-unknown-linux-musl (#67)
The configure step for jemalloc fails to recognize the rustc
target `riscv64gc-unknown-linux-musl`:
```
  --- stderr
  Invalid configuration `riscv64gc-unknown-linux-musl': machine `riscv64gc-unknown' not recognized
  configure: error: /bin/sh build-aux/config.sub riscv64gc-unknown-linux-musl failed
  thread 'main' panicked at /home/marv/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jemalloc-sys-0.5.4+5.3.0-patched/build.rs:351:9:
  command did not execute successfully: cd "/mnt/data/devel/ripgrep/target/release/build/jemalloc-sys-eb3f9d51d93e319f/out/build" && CC="cc" CFLAGS="-O3 -ffunction-sections -fdata-sections -fPIC -gdwarf-4 -fno-omit-frame-pointer -march=rv64gc -mabi=lp64d -mcmodel=medany -Wall -g -ggdb3 -O0" CPPFLAGS="-O3 -ffunction-sections -fdata-sections -fPIC -gdwarf-4 -fno-omit-frame-pointer -march=rv64gc -mabi=lp64d -mcmodel=medany -Wall -g -ggdb3 -O0" LDFLAGS="-O3 -ffunction-sections -fdata-sections -fPIC -gdwarf-4 -fno-omit-frame-pointer -march=rv64gc -mabi=lp64d -mcmodel=medany -Wall -g -ggdb3 -O0" "sh" "/mnt/data/devel/ripgrep/target/release/build/jemalloc-sys-eb3f9d51d93e319f/out/build/configure" "--disable-cxx" "--enable-doc=no" "--enable-shared=no" "--with-jemalloc-prefix=_rjem_" "--with-private-namespace=_rjem_" "--host=riscv64gc-unknown-linux-musl" "--build=riscv64gc-unknown-linux-musl" "--prefix=/mnt/data/devel/ripgrep/target/release/build/jemalloc-sys-eb3f9d51d93e319f/out"
  expected success, got: exit status: 1
```

Add an entry to build.rs to translate between the GNU target and rustc
target in order to work around the mismatch

Signed-off-by: Marvin Schmidt <marv@exherbo.org>
2024-01-30 18:59:16 +08:00
.github/workflows *: bump 0.5.0 (#26) 2022-05-24 16:31:42 -07:00
ci update jemalloc to 5.3.0 (#23) 2022-05-18 17:06:46 -07:00
jemalloc-ctl *: bump 0.5.4 (#62) 2023-07-27 13:59:08 +08:00
jemalloc-sys build: Fix build on riscv64gc-unknown-linux-musl (#67) 2024-01-30 18:59:16 +08:00
jemallocator Update README.md (#64) 2023-10-08 10:13:11 +08:00
jemallocator-global *: bump 0.5.0 (#26) 2022-05-24 16:31:42 -07:00
.gitignore Initial commit 2016-01-20 17:03:24 -08:00
.gitmodules update jemalloc to 5.3.0 (#23) 2022-05-18 17:06:46 -07:00
CHANGELOG.md *: bump 0.5.4 (#62) 2023-07-27 13:59:08 +08:00
Cargo.toml update jemalloc to 5.3.0 (#23) 2022-05-18 17:06:46 -07:00
LICENSE-APACHE Fill out some more project metadata 2016-01-20 17:06:21 -08:00
LICENSE-MIT Fill out some more project metadata 2016-01-20 17:06:21 -08:00
README.md Move README to jemallocator 2023-07-28 00:05:57 +08:00

README.md

tikv-jemallocator

ci Latest Version docs

This project is the successor of jemallocator.

The project is also published as jemallocator for historical reasons. The two crates are the same except names. For new projects, it's recommended to use tikv-xxx versions instead.

Links against jemalloc and provides a Jemalloc unit type that implements the allocator APIs and can be set as the #[global_allocator]

Overview

The jemalloc support ecosystem consists of the following crates:

  • tikv-jemalloc-sys: builds and links against jemalloc exposing raw C bindings to it.
  • tikv-jemallocator: provides the Jemalloc type which implements the GlobalAlloc and Alloc traits.
  • tikv-jemalloc-ctl: high-level wrapper over jemalloc's control and introspection APIs (the mallctl*() family of functions and the MALLCTL NAMESPACE)'

Documentation

To use tikv-jemallocator add it as a dependency:

# Cargo.toml
[dependencies]

[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"

To set tikv_jemallocator::Jemalloc as the global allocator add this to your project:

// main.rs
#[cfg(not(target_env = "msvc"))]
use tikv_jemallocator::Jemalloc;

#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

And that's it! Once you've defined this static then jemalloc will be used for all allocations requested by Rust code in the same program.

Platform support

The following table describes the supported platforms:

  • build: does the library compile for the target?
  • run: do tikv-jemallocator and tikv-jemalloc-sys tests pass on the target?
  • jemalloc: do tikv-jemalloc's tests pass on the target?

Tier 1 targets are tested on all Rust channels (stable, beta, and nightly). All other targets are only tested on Rust nightly.

Linux targets: build run jemalloc
aarch64-unknown-linux-gnu
powerpc64le-unknown-linux-gnu
x86_64-unknown-linux-gnu (tier 1)
MacOSX targets: build run jemalloc
x86_64-apple-darwin (tier 1)

Features

The tikv-jemallocator crate re-exports the features of the tikv-jemalloc-sys dependency.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in tikv-jemallocator by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.