Run tst-ld-sse-use.sh with bash.
tst-ld-sse-use.sh is a bash script, not a POSIX shell script, and so needs to be run with $(BASH) not $(SHELL) to avoid errors of the form: ../sysdeps/x86/tst-ld-sse-use.sh: 41: ../sysdeps/x86/tst-ld-sse-use.sh: declare: not found (when /bin/sh is dash). This patch makes that change. Tested for x86_64. * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script with $(BASH) not $(SHELL).
This commit is contained in:
parent
62058ce612
commit
b7e02da4e9
@ -1,3 +1,8 @@
|
|||||||
|
2014-09-29 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
|
||||||
|
with $(BASH) not $(SHELL).
|
||||||
|
|
||||||
2014-09-29 Carlos O'Donell <carlos@redhat.com>
|
2014-09-29 Carlos O'Donell <carlos@redhat.com>
|
||||||
Matthew LeGendre <legendre1@llnl.gov>
|
Matthew LeGendre <legendre1@llnl.gov>
|
||||||
|
|
||||||
|
@ -5,6 +5,6 @@ CFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),\
|
|||||||
tests-special += $(objpfx)tst-ld-sse-use.out
|
tests-special += $(objpfx)tst-ld-sse-use.out
|
||||||
$(objpfx)tst-ld-sse-use.out: ../sysdeps/x86/tst-ld-sse-use.sh $(objpfx)ld.so
|
$(objpfx)tst-ld-sse-use.out: ../sysdeps/x86/tst-ld-sse-use.sh $(objpfx)ld.so
|
||||||
@echo "Checking ld.so for SSE register use. This will take a few seconds..."
|
@echo "Checking ld.so for SSE register use. This will take a few seconds..."
|
||||||
$(SHELL) $< $(objpfx) '$(NM)' '$(OBJDUMP)' '$(READELF)' > $@; \
|
$(BASH) $< $(objpfx) '$(NM)' '$(OBJDUMP)' '$(READELF)' > $@; \
|
||||||
$(evaluate-test)
|
$(evaluate-test)
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user