We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. found during zfs 0.8.4 build for ALT Linux (ALT uses strong symbols checking in the build farm):
$ ldd -r lib/libnvpair/.libs/libnvpair.so linux-vdso.so.1 (0x00007fffc076f000) libc.so.6 => /lib64/libc.so.6 (0x00007ff6b9a4f000) /lib64/ld-linux-x86-64.so.2 (0x00007ff6b9c30000) undefined symbol: aok (lib/libnvpair/.libs/libnvpair.so)
adding int oak = 0; to lib/libnvpair/libnvpair.c solves this problem.
The text was updated successfully, but these errors were encountered:
Related to #9752 . That seems to be to simplest fix, would you mind opening a PR?
Sorry, something went wrong.
me too with zfs-0.8.6 + ubuntu 16.04.6 + aarch64. And append int aok = 0; after lib/libnvpair/libnvpair.c's include is ok.
int aok = 0;
include
Closing. This was resolved in the 2.0 release. If possible I'd suggest moving to the new release.
No branches or pull requests
Hi.
found during zfs 0.8.4 build for ALT Linux (ALT uses strong symbols checking in the build farm):
adding int oak = 0; to lib/libnvpair/libnvpair.c solves this problem.
The text was updated successfully, but these errors were encountered: