| From 03e925f0d68bc51e1acf1ac2014a9c2452c664bf Mon Sep 17 00:00:00 2001 |
| From: Alexander Kanavin <alex.kanavin@gmail.com> |
| Date: Wed, 15 Jan 2020 17:16:28 +0100 |
| Subject: [PATCH] tests: do not statically link a test |
| |
| This fails on e.g. centos 7 |
| |
| Upstream-Status: Inappropriate [oe-core specific] |
| Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
| |
| --- |
| tests/Makefile | 4 ++-- |
| 1 file changed, 2 insertions(+), 2 deletions(-) |
| |
| diff --git a/tests/Makefile b/tests/Makefile |
| index d569650..f5ca377 100644 |
| --- a/tests/Makefile |
| +++ b/tests/Makefile |
| @@ -11,7 +11,7 @@ ifeq ($(DYNAMIC),yes) |
| LDPATH = LD_LIBRARY_PATH=../libcap |
| DEPSBUILD = all |
| else |
| -LDFLAGS += --static |
| +LDFLAGS += |
| DEPSBUILD = libcap.a libpsx.a |
| endif |
| |
| @@ -51,7 +51,7 @@ libcap_psx_launch_test: libcap_launch_test.c $(DEPS) |
| |
| # This one runs in a chroot with no shared library files. |
| noop: noop.c |
| - $(CC) $(CFLAGS) $< -o $@ --static |
| + $(CC) $(CFLAGS) $< -o $@ |
| |
| clean: |
| rm -f psx_test libcap_psx_test libcap_launch_test *~ |