mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 13:18:59 +08:00
0e474768f4
Allows running on older versions of macOS.
9 lines
293 B
TOML
9 lines
293 B
TOML
# For macOS, support 10.9 on x86-64, and 11.0 on aarch64, which
|
|
# is the minimum supported version for Apple Silicon.
|
|
[target.x86_64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-mmacosx-version-min=10.9"]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags = ["-C", "link-arg=-mmacosx-version-min=11.0"]
|
|
|