Installed files
Forum » General / Help requests » Installed files
Started by: mph (guest)
On: 1248292735|%e %b %Y, %H:%M %Z|agohover
Number of posts: 2
rss icon RSS: New posts
Summary:
Documentation is missing a files list for installation.
Installed files
mph (guest) 1248292735|%e %b %Y, %H:%M %Z|agohover

It would be helpful to have in the documentation a list of the files structure which should be installed after compiling from the source.

I am compiling from the source on OS X and the following was installed,

/usr/include/lqr-1/lqr.h
/usr/include/lqr-1/lqr/
    lqr_base.h
    lqr_carver_bias_pub.h
    lqr_carver_list_pub.h
    lqr_carver_pub.h
    lqr_carver_rigmask_pub.h
    lqr_cursor_pub.h
    lqr_energy_pub.h
    lqr_gradient_pub.h
    lqr_progress_pub.h
    lqr_rwindow_pub.h
    lqr_vmap_list_pub.h
    lqr_vmap_pub.h
unfold Installed files by mph (guest), 1248292735|%e %b %Y, %H:%M %Z|agohover
Re: Installed files
UnNeuroneUnNeurone 1248296863|%e %b %Y, %H:%M %Z|agohover

I agree that such a list would be useful, but it depends on the configuration options and it is not easy to create one automatically, to my knowledge (suggestions are welcome).
The list you have posted only includes the header files, it misses the library binaries and some other stuff.
If your configuration is reasonably standard, you could get the list of installed files using these commands:

sudo make install | tee install_output.tmp
cat install_output.tmp | grep $(which install) | awk '{print $(NF)}' | sed "s/^'\(.*\)'$/\1/" > installed_files.txt

You should then be able to read the list in the file installed_files.txt.
If you also want to see which symbolic links are created, type cat install_output.tmp | grep "ln" and inspect the output.
Then, you may remove install_output.tmp.
On my Linux system these commands currently produce the following list (when I don't pass the option —enable-install-man to ./configure):
/usr/lib/liblqr-1.la
/usr/lib/liblqr-1.so.0.3.1
/usr/lib/liblqr-1.la
/usr/include/lqr-1/lqr.h
/usr/include/lqr-1/lqr/lqr_base.h
/usr/include/lqr-1/lqr/lqr_gradient_pub.h
/usr/include/lqr-1/lqr/lqr_rwindow_pub.h
/usr/include/lqr-1/lqr/lqr_energy_pub.h
/usr/include/lqr-1/lqr/lqr_cursor_pub.h
/usr/include/lqr-1/lqr/lqr_carver_pub.h
/usr/include/lqr-1/lqr/lqr_carver_list_pub.h
/usr/include/lqr-1/lqr/lqr_carver_bias_pub.h
/usr/include/lqr-1/lqr/lqr_carver_rigmask_pub.h
/usr/include/lqr-1/lqr/lqr_vmap_pub.h
/usr/include/lqr-1/lqr/lqr_vmap_list_pub.h
/usr/include/lqr-1/lqr/lqr_progress_pub
/usr/lib/pkgconfig/lqr-1.pc
last edited on 1248296893|%e %b %Y, %H:%M %Z|agohover by UnNeurone + show more
unfold Re: Installed files by UnNeuroneUnNeurone, 1248296863|%e %b %Y, %H:%M %Z|agohover
New post
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License