diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2016-01-18 14:36:28 -0800 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2016-01-18 14:36:28 -0800 |
commit | 8d079ae0cdaab119f95382d6423fa4936e07ae97 (patch) | |
tree | a542702d573c9f5f3a917d5df52ae1f2b6be8f93 /math | |
parent | c4d17461e062e730fca4076dd47a2733b3914c51 (diff) | |
download | glibc-8d079ae0cdaab119f95382d6423fa4936e07ae97.zip glibc-8d079ae0cdaab119f95382d6423fa4936e07ae97.tar.gz glibc-8d079ae0cdaab119f95382d6423fa4936e07ae97.tar.bz2 |
[BZ #19451]
* math/Makefile (libm-vec-tests): Move libraries after wrappers.o to fix
"make check" link failure on Ubuntu.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/Makefile b/math/Makefile index 8bedef7..222ee6b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -295,8 +295,8 @@ $(objpfx)libieee.a: $(objpfx)ieee-math.o $(addprefix $(objpfx),$(filter-out $(tests-static) $(libm-vec-tests),$(tests))): $(libm) $(addprefix $(objpfx),$(tests-static)): $(objpfx)libm.a -$(addprefix $(objpfx), $(libm-vec-tests)): $(objpfx)%: $(libm) $(libmvec) \ - $(objpfx)%-wrappers.o +$(addprefix $(objpfx), $(libm-vec-tests)): $(objpfx)%: $(objpfx)%-wrappers.o $(libm) \ + $(libmvec) gmp-objs = $(patsubst %,$(common-objpfx)stdlib/%.o,\ add_n sub_n cmp addmul_1 mul_1 mul_n divmod_1 \ |