mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 06:32:12 +02:00
Rebase 0001-tests-do-not-statically-link-a-test.patch (From OE-Core rev: 86d657364bb2ed859ed7151d56cca431104d8279) Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
53 lines
1.4 KiB
Diff
53 lines
1.4 KiB
Diff
From 6aa15fe548e5b1d6ca3b373779beb7521ea95ba9 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>
|
|
---
|
|
progs/Makefile | 2 +-
|
|
tests/Makefile | 4 ++--
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/progs/Makefile b/progs/Makefile
|
|
index 1d7fc7a..37db8f7 100644
|
|
--- a/progs/Makefile
|
|
+++ b/progs/Makefile
|
|
@@ -42,7 +42,7 @@ endif
|
|
test: $(PROGS)
|
|
|
|
tcapsh-static: capsh.c $(DEPS)
|
|
- $(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS) --static
|
|
+ $(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS)
|
|
|
|
sudotest: test tcapsh-static
|
|
sudo $(LDPATH) ./quicktest.sh
|
|
diff --git a/tests/Makefile b/tests/Makefile
|
|
index 01f7589..094ec57 100644
|
|
--- a/tests/Makefile
|
|
+++ b/tests/Makefile
|
|
@@ -22,7 +22,7 @@ ifeq ($(PTHREADS),yes)
|
|
DEPS += ../libcap/libpsx.so
|
|
endif
|
|
else
|
|
-LDFLAGS += --static
|
|
+LDFLAGS +=
|
|
DEPS=../libcap/libcap.a
|
|
ifeq ($(PTHREADS),yes)
|
|
DEPS += ../libcap/libpsx.a
|
|
@@ -106,7 +106,7 @@ noexploit: exploit.o $(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 *~
|
|
--
|
|
2.17.1
|
|
|