both the player and stage install libraries in the /usr/local/lib/ directory regardless of architecture. On fedora 64 the correct directory would be /usr/local/lib64/. I did not see any way to manually configure this in ccmake.
This isn't really a bug. CMake's default installation prefix is /usr/local/lib. I don't know how common Fedora 64's variation is, but it's properly up to CMake to track that.
To override the default setting, do this at build configuration time:
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/lib64 <player or stage top level source directory>
I'm closing this as a non-bug. However, it's good to have this problem and solution logged in the tracker.
- rtv
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
built using gcc version 4.3.0
This isn't really a bug. CMake's default installation prefix is /usr/local/lib. I don't know how common Fedora 64's variation is, but it's properly up to CMake to track that.
To override the default setting, do this at build configuration time:
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/lib64 <player or stage top level source directory>
I'm closing this as a non-bug. However, it's good to have this problem and solution logged in the tracker.
- rtv