allow the use of the LLVM shared library

Which in turns allows working around the incompatibility of the LLVM static library
with Rust link-args=-rdynamic, which produces binaries that either fail to link (OpenBSD)
or segfault on startup (Linux).

The year is 2024 and compiler toolchains are still a trash fire like this.
This commit is contained in:
Sébastien Bourdeauducq 2024-09-09 11:14:53 +08:00
parent 6098b1b853
commit 5a34551905
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ strum_macros = "0.26"
[dependencies.inkwell]
version = "0.4"
default-features = false
features = ["llvm14-0", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]
features = ["llvm14-0-prefer-dynamic", "target-x86", "target-arm", "target-riscv", "no-libffi-linking"]
[dev-dependencies]
test-case = "1.2.0"