diff options
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rt/Makefile b/rt/Makefile index b102cc834e..2044eb4bf6 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -35,7 +35,7 @@ include ../Makeconfig ifeq ($(have-thread-library),yes) -tests := tst-aio +tests := tst-aio tst-aio64 extra-libs := librt extra-libs-others := $(extra-libs) @@ -51,6 +51,8 @@ $(objpfx)librt.so: $(common-objpfx)libc.so $(shared-thread-library) ifeq (yes,$(build-shared)) $(objpfx)tst-aio: $(objpfx)librt.so $(shared-thread-library) +$(objpfx)tst-aio64: $(objpfx)librt.so $(shared-thread-library) else $(objpfx)tst-aio: $(objpfx)librt.a $(static-thread-library) -endif \ No newline at end of file +$(objpfx)tst-aio64: $(objpfx)librt.a $(static-thread-library) +endif |