mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-02-05 14:53:25 +03:00
![Petros Koutoupis](/assets/img/avatar_default.png)
When building on native dev system, there are no issues but when cross-compiling for target system, some linker errors are observed. The only way to avoid these errors is by adjusting the Makefile.am of those various components to add the library dependencies. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Petros Koutoupis <petros@petroskoutoupis.com> Closes #10304
15 lines
298 B
Makefile
15 lines
298 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
sbin_PROGRAMS = zstream
|
|
|
|
zstream_SOURCES = \
|
|
zstream.c \
|
|
zstream.h \
|
|
zstream_dump.c \
|
|
zstream_redup.c
|
|
|
|
zstream_LDADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libzfs_core/libzfs_core.la \
|
|
$(top_builddir)/lib/libzfs/libzfs.la
|