Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame^] | 1 | From 1179b423cce8d119b42cebfb3daa77c540fdca43 Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Wed, 15 Jan 2020 17:16:28 +0100 |
| 4 | Subject: [PATCH] tests: do not statically link a test |
| 5 | |
| 6 | This fails on e.g. centos 7 |
| 7 | |
| 8 | Upstream-Status: Inappropriate [oe-core specific] |
| 9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| 10 | --- |
| 11 | tests/Makefile | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/tests/Makefile b/tests/Makefile |
| 15 | index 7162cf0..6af47af 100644 |
| 16 | --- a/tests/Makefile |
| 17 | +++ b/tests/Makefile |
| 18 | @@ -29,7 +29,7 @@ psx_test_wrap: psx_test.c $(DEPS) |
| 19 | run_libcap_psx_test: libcap_psx_test |
| 20 | |
| 21 | libcap_psx_test: libcap_psx_test.c $(DEPS) |
| 22 | - $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) -Wl,-wrap,pthread_create --static |
| 23 | + $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) -Wl,-wrap,pthread_create |
| 24 | |
| 25 | clean: |
| 26 | rm -f psx_test psx_test_wrap libcap_psx_test |