summaryrefslogtreecommitdiff
path: root/package/skalibs/0003-Make-linker-use-dummy-file-when-testing-libs.patch
blob: 08411793698cb0c35ce7104d80cdefd5bd733eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
From 02ef4599179ead87cc6d154a32acaa6627cbfca2 Mon Sep 17 00:00:00 2001
From: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Date: Tue, 10 Oct 2017 19:51:34 +0200
Subject: [PATCH] Make linker use dummy file when testing libs

For some architectures, like Xtensa or HPPA, ld from binutils requires
the output file to be a regular file, as mentioned in a bug report on
the mailing list [1].

So, use a dummy file as output file for ld in trylibs(), instead of
/dev/null.

[1] https://sourceware.org/bugzilla/show_bug.cgi?id=19526

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 8348b1f..62e5981 100755
--- a/configure
+++ b/configure
@@ -227,7 +227,7 @@ trylibs () {
   echo "Checking whether system has $2..." >&3
   shift 2
   if $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST -c -o try$name.o src/sysdeps/try$name.c 2>/dev/null ; then
-    until $CC_AUTO $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o /dev/null try$name.o $args 2>/dev/null ; do
+    until $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST -o try$name try$name.o $args 2>/dev/null ; do
       if test -z "$*" ; then
         rm -f try$name.o
         echo
@@ -243,7 +243,7 @@ trylibs () {
     else
       echo "  ... yes, with$args" >&3
     fi
-    rm -f try$name.o
+    rm -f try$name.o try$name
     return 0
   else
     echo
-- 
2.13.6