diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-05-10 17:05:06 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-05-10 17:05:06 -0700 |
commit | df8a552f6f93f62c494177a49ee49d3bf40949b8 (patch) | |
tree | 8aee7d998d4e25fe5563f87295f317d5800e4f0e /sysdeps/x86_64/Makefile | |
parent | f42d41d10769f9bf465348e6cf6960364d47e10b (diff) | |
download | glibc-df8a552f6f93f62c494177a49ee49d3bf40949b8.tar.gz glibc-df8a552f6f93f62c494177a49ee49d3bf40949b8.tar.xz glibc-df8a552f6f93f62c494177a49ee49d3bf40949b8.zip |
Handle R_X86_64_RELATIVE64 and R_X86_64_64 for x32
Diffstat (limited to 'sysdeps/x86_64/Makefile')
-rw-r--r-- | sysdeps/x86_64/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysdeps/x86_64/Makefile b/sysdeps/x86_64/Makefile index b989f6a976..81c9128a95 100644 --- a/sysdeps/x86_64/Makefile +++ b/sysdeps/x86_64/Makefile @@ -21,6 +21,19 @@ sysdep-dl-routines += tlsdesc dl-tlsdesc sysdep_routines += tlsdesc dl-tlsdesc sysdep-rtld-routines += tlsdesc dl-tlsdesc +tests += tst-quad1 tst-quad2 +modules-names += tst-quadmod1 tst-quadmod2 + +$(objpfx)tst-quad1: $(objpfx)tst-quadmod1.so +$(objpfx)tst-quad2: $(objpfx)tst-quadmod2.so + +quad-pie-test += tst-quad1pie tst-quad2pie +tests += $(quad-pie-test) +tests-pie += $(quad-pie-test) + +$(objpfx)tst-quad1pie: $(objpfx)tst-quadmod1pie.o +$(objpfx)tst-quad2pie: $(objpfx)tst-quadmod2pie.o + tests: $(objpfx)tst-xmmymm.out $(objpfx)tst-xmmymm.out: ../sysdeps/x86_64/tst-xmmymm.sh $(objpfx)ld.so @echo "Checking ld.so for SSE register use. This will take a few seconds..." |