Hi guys hoping some of you solaris wizards might be able to point me in the right direction...
Background: I'm compiling a program that makes use of some of the zfs CLI code. (found here: https://github.com/illumos/illumos-gate/tree/master/usr/src/cmd/zfs)
Problem:
libuutil.so.1
is present in /usr/lib
but if I try to compile like so...
$ gcc -lzfs -L/usr/lib -luutil -lnvpair
ld: fatal: library -luutil: not found
Can anyone suggest a fix? Or a reason that the lib is not being found?
Thanks guys!