You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
[package]
|
|
name = "wasmtime-jit-icache-coherence"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description = "Utilities for JIT icache maintenance"
|
|
documentation = "https://docs.rs/jit-icache-coherence"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
cfg-if = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
|
workspace = true
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
"Win32_System_Diagnostics_Debug",
|
|
]
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "freebsd", target_os = "android"))'.dependencies]
|
|
libc = "0.2.42"
|
|
|
|
[features]
|
|
# Most modern CPUs are SMP (multicore). However, when only one core is present,
|
|
# some aspects of coherence are much cheaper. For example, RISC-V can use
|
|
# one instruction `fence.i` rather than a syscall that invokes all other cores.
|
|
# This feature enables such optimizations, but the resulting program will *only*
|
|
# be safe to run on one-core systems.
|
|
one-core = []
|
|
|