mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-12 06:41:14 -03:00
@@ -19,6 +19,8 @@ Other improvements
|
||||
|
||||
For distributors
|
||||
----------------
|
||||
- Fixed build on MIPS machines (:issue:`11965`).
|
||||
- Fixed broken universal variables on Cygwin (:issue:`11948`).
|
||||
|
||||
|
||||
fish 4.1.3 (released ???)
|
||||
|
||||
@@ -417,7 +417,15 @@ macro_rules! signal_entry {
|
||||
#[cfg(any(apple, bsd))]
|
||||
signal_entry!(SIGINFO, SIGINFO_DESC),
|
||||
|
||||
#[cfg(target_os = "linux")]
|
||||
#[cfg(all(
|
||||
target_os = "linux",
|
||||
not(any(
|
||||
target_arch = "mips",
|
||||
target_arch = "mips32r6",
|
||||
target_arch = "mips64",
|
||||
target_arch = "mips64r6",
|
||||
))
|
||||
))]
|
||||
signal_entry!(SIGSTKFLT, SIGSTKFLT_DESC),
|
||||
|
||||
#[cfg(target_os = "linux")]
|
||||
|
||||
Reference in New Issue
Block a user