Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 52102cb

Browse files
committed
Merge r196b05b5c from master
commit 196b05b (fpxregs) Author: Alan Somers <[email protected]> Date: Fri May 17 14:59:36 2019 -0600 Fix build on arm and s390x after recent libc changes libc just removed some symbols on linux/arm32 and linux/s390x that never should've been defined in the first place. rust-lang/libc@24f8972 rust-lang/libc@d269543
1 parent 5215a6d commit 52102cb

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/sys/ptrace.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,31 +38,27 @@ libc_enum!{
3838
all(target_os = "linux", any(target_env = "musl",
3939
target_arch = "mips",
4040
target_arch = "mips64",
41-
target_arch = "s390x",
4241
target_arch = "x86_64",
4342
target_pointer_width = "32"))))]
4443
PTRACE_GETREGS,
4544
#[cfg(any(all(target_os = "android", target_pointer_width = "32"),
4645
all(target_os = "linux", any(target_env = "musl",
4746
target_arch = "mips",
4847
target_arch = "mips64",
49-
target_arch = "s390x",
5048
target_arch = "x86_64",
5149
target_pointer_width = "32"))))]
5250
PTRACE_SETREGS,
5351
#[cfg(any(all(target_os = "android", target_pointer_width = "32"),
5452
all(target_os = "linux", any(target_env = "musl",
5553
target_arch = "mips",
5654
target_arch = "mips64",
57-
target_arch = "s390x",
5855
target_arch = "x86_64",
5956
target_pointer_width = "32"))))]
6057
PTRACE_GETFPREGS,
6158
#[cfg(any(all(target_os = "android", target_pointer_width = "32"),
6259
all(target_os = "linux", any(target_env = "musl",
6360
target_arch = "mips",
6461
target_arch = "mips64",
65-
target_arch = "s390x",
6662
target_arch = "x86_64",
6763
target_pointer_width = "32"))))]
6864
PTRACE_SETFPREGS,
@@ -71,14 +67,12 @@ libc_enum!{
7167
#[cfg(all(target_os = "linux", any(target_env = "musl",
7268
target_arch = "mips",
7369
target_arch = "mips64",
74-
target_arch = "arm",
7570
target_arch = "x86",
7671
target_arch = "x86_64")))]
7772
PTRACE_GETFPXREGS,
7873
#[cfg(all(target_os = "linux", any(target_env = "musl",
7974
target_arch = "mips",
8075
target_arch = "mips64",
81-
target_arch = "arm",
8276
target_arch = "x86",
8377
target_arch = "x86_64")))]
8478
PTRACE_SETFPXREGS,

0 commit comments

Comments
 (0)