summaryrefslogtreecommitdiffstats
path: root/package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2018-09-07 13:08:31 +0200
committerPeter Korsgaard <peter@korsgaard.com>2018-09-07 13:13:17 +0200
commit721e4cbb529d247c9c1ebef68275e70a3086ae0b (patch)
tree2967ef4e10e2592661f664df4515d67dbc80cfe5 /package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch
parent89920e9735cb561dccf1e1f81d35788fd10a655b (diff)
parentcec266ee1f708f11cc679cb4f81613fa4186003c (diff)
downloadbuildroot-721e4cbb529d247c9c1ebef68275e70a3086ae0b.tar.gz
buildroot-721e4cbb529d247c9c1ebef68275e70a3086ae0b.zip
Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch')
-rw-r--r--package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch b/package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch
deleted file mode 100644
index cc057cee13..0000000000
--- a/package/lynx/0001-src-chrtrans-don-t-build-host-tools-with-target-LDFL.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From bb47abe9e7996147f6b7b325f5c9b2143abf8f13 Mon Sep 17 00:00:00 2001
-From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Date: Mon, 7 May 2018 22:00:52 +0200
-Subject: [PATCH] src/chrtrans: don't build host tools with target LDFLAGS
-
-In a cross-compilation context, the LDFLAGS variable contains linker
-flags used when building things for the target. However, the makeuctb
-tool is built for the host machine, and therefore should not use the
-same LDFLAGS as the target, which is why BUILD_LDFLAGS exist.
-
-Using LDFLAGS when building a tool for the host can cause problems
-when some flags in LDFLAGS are not supported by the host machine. For
-example, if you're linking statically lynx for the target, but the
-build machine does not support static linking:
-
-gcc -I../.. -I../../src -I../../src/chrtrans -I../../WWW/Library/Implementation -I../../ -static -o makeuctb makeuctb.o
-/usr/bin/ld: cannot find -lc
-collect2: error: ld returned 1 exit status
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-Upstream-status: submitted on the mailing list
----
- src/chrtrans/makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/chrtrans/makefile.in b/src/chrtrans/makefile.in
-index aab358f..6e0ef03 100644
---- a/src/chrtrans/makefile.in
-+++ b/src/chrtrans/makefile.in
-@@ -123,7 +123,7 @@ OBJS = makeuctb$o
- C_SRC = $(OBJS:$o=.c)
-
- $(MAKEUCTB) : $(OBJS)
-- $(BUILD_CC) $(CC_OPTS) $(LDFLAGS) $(BUILD_LDFLAGS) -o $@ $(OBJS) $(INTLLIB) $(BUILD_LIBS)
-+ $(BUILD_CC) $(CC_OPTS) $(BUILD_LDFLAGS) -o $@ $(OBJS) $(INTLLIB) $(BUILD_LIBS)
-
- makeuctb$o : $(srcdir)/UCkd.h $(srcdir)/makeuctb.c
-
---
-2.14.3
-
OpenPOWER on IntegriCloud