mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:04:39 +08:00
521498143a
Some checks are pending
make test / ubuntu (push) Waiting to run
make test / ubuntu-32bit-static-pcre2 (push) Waiting to run
make test / ubuntu-asan (push) Waiting to run
make test / macos (push) Waiting to run
Rust checks / clippy (push) Waiting to run
Rust checks / rustfmt (push) Waiting to run
Commit 4e79ec5f
tried to restore the static PCRE2 build after the update to the
pcre2 crate, but it set an environment variable at configure time, not build
time.
Properly set the environment variable at build time.
10 lines
330 B
CMake
10 lines
330 B
CMake
set(FISH_USE_SYSTEM_PCRE2 ON CACHE BOOL
|
|
"Try to use PCRE2 from the system, instead of the pcre2-sys version")
|
|
|
|
if(FISH_USE_SYSTEM_PCRE2)
|
|
message(STATUS "Trying to use PCRE2 from the system")
|
|
else()
|
|
message(STATUS "Forcing static build of PCRE2")
|
|
set(FISH_PCRE2_BUILDFLAG "PCRE2_SYS_STATIC=1")
|
|
endif(FISH_USE_SYSTEM_PCRE2)
|