Displaying 2 results from an estimated 2 matches for "eexzkbna".
2012 May 10
1
guestfs_mount_local* api undefined symbols
...--------------------------------------------------------------------------
gcc prog.c -o prog -Wall -lguestfs
no relevant warning or error
---------------------------------------------------------------------------------------------------------------------------
make install
http://pastebin.com/EExzKbNa
---------------------------------------------------------------------------------------------------------------------------
make
http://pastebin.com/1xZaSe8K
---------------------------------------------------------------------------------------------------------------------------
configure
http:/...
2012 May 10
1
回复: guestfs_mount_local* api undefined symbols
...same error ?undefined symbol guestfs_mount_local?.
The symptoms sound like you're compiling your program against
libguestfs 1.17.40, but you're running your program against an earlier
libguestfs library (maybe the one installed in RHEL 6?).
> make install
>
> http://pastebin.com/EExzKbNa
This installs libguestfs in /usr/local. The one from RHEL 6 will be
in /usr. You might want to set 'LD_LIBRARY_PATH' so that the
program uses the /usr/local copy, ie:
LD_LIBRARY_PATH=/usr/local/lib ./prog
By the way, it's not necessarily safe to mix'n'match libraries,
dae...