* [PATCH] xfs_scrub: fix cross compile with libunistring
@ 2018-03-20 12:21 Baruch Siach
2018-03-20 21:34 ` Darrick J. Wong
0 siblings, 1 reply; 2+ messages in thread
From: Baruch Siach @ 2018-03-20 12:21 UTC (permalink / raw)
To: linux-xfs; +Cc: Baruch Siach, Darrick J . Wong
Commit 4bbed4ecc2a (xfs_scrub: warn about normalized Unicode name collisions)
added -lunistring to the list of the xfs_scrub dependencies. When cross
compiling make fails to find the library on the target sysroot:
make[3]: *** No rule to make target `-lunistring', needed by `xfs_scrub'. Stop.
Remove -lunistring from make dependencies of xfs_scrub to fix that.
Cc: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
scrub/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scrub/Makefile b/scrub/Makefile
index 949f6fd8ba94..979603f524ff 100644
--- a/scrub/Makefile
+++ b/scrub/Makefile
@@ -69,7 +69,7 @@ vfs.c \
xfs_scrub.c
LLDLIBS += $(LIBHANDLE) $(LIBFROG) $(LIBPTHREAD) $(LIBUNISTRING) $(LIBRT)
-LTDEPENDENCIES += $(LIBHANDLE) $(LIBFROG) $(LIBUNISTRING) $(LIBRT)
+LTDEPENDENCIES += $(LIBHANDLE) $(LIBFROG) $(LIBRT)
LLDFLAGS = -static-libtool-libs
ifeq ($(HAVE_MALLINFO),yes)
--
2.16.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] xfs_scrub: fix cross compile with libunistring
2018-03-20 12:21 [PATCH] xfs_scrub: fix cross compile with libunistring Baruch Siach
@ 2018-03-20 21:34 ` Darrick J. Wong
0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2018-03-20 21:34 UTC (permalink / raw)
To: Baruch Siach; +Cc: linux-xfs
On Tue, Mar 20, 2018 at 02:21:56PM +0200, Baruch Siach wrote:
> Commit 4bbed4ecc2a (xfs_scrub: warn about normalized Unicode name collisions)
> added -lunistring to the list of the xfs_scrub dependencies. When cross
> compiling make fails to find the library on the target sysroot:
>
> make[3]: *** No rule to make target `-lunistring', needed by `xfs_scrub'. Stop.
>
> Remove -lunistring from make dependencies of xfs_scrub to fix that.
>
> Cc: Darrick J. Wong <darrick.wong@oracle.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
> scrub/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scrub/Makefile b/scrub/Makefile
> index 949f6fd8ba94..979603f524ff 100644
> --- a/scrub/Makefile
> +++ b/scrub/Makefile
> @@ -69,7 +69,7 @@ vfs.c \
> xfs_scrub.c
>
> LLDLIBS += $(LIBHANDLE) $(LIBFROG) $(LIBPTHREAD) $(LIBUNISTRING) $(LIBRT)
> -LTDEPENDENCIES += $(LIBHANDLE) $(LIBFROG) $(LIBUNISTRING) $(LIBRT)
> +LTDEPENDENCIES += $(LIBHANDLE) $(LIBFROG) $(LIBRT)
I think we can drop the $LIBRT here too... but it's sort of moot since I
was about to send a big series of xfs_scrub rewrites, one of which fixed
this problem indirectly (by ripping out libunistring and replacing it
with libicu).
Thanks for catching this and the musl bugs, though. :)
--D
> LLDFLAGS = -static-libtool-libs
>
> ifeq ($(HAVE_MALLINFO),yes)
> --
> 2.16.2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-03-20 21:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-20 12:21 [PATCH] xfs_scrub: fix cross compile with libunistring Baruch Siach
2018-03-20 21:34 ` Darrick J. Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).