mirror of git://sourceware.org/git/glibc.git
hurd: Fix restoring SSE state on signal
mach_port_mod_refs() needs to avoid using SSE&MMX for __sigreturn2 to be able to use it without thrashing SSE&MMX.
This commit is contained in:
parent
9f18265a8e
commit
ce61fcf702
|
|
@ -14,3 +14,8 @@ endif
|
|||
ifeq ($(subdir),stdlib)
|
||||
gen-as-const-headers += ucontext_i.sym
|
||||
endif
|
||||
|
||||
ifeq ($(subdir),mach)
|
||||
# Avoid SSE&MMX to avoid __sigreturn2 thrashing it
|
||||
CFLAGS-RPC_mach_port_mod_refs.c = -mno-sse -mno-mmx
|
||||
endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue