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
.pixi/envs
When using pixi to build pinocchio, after a ninja install, tests link with pinocchio's libs that are installed in .pixi/envs/....
ninja install
.pixi/envs/...
When using pixi to build pinocchio, after a ninja install, tests link with pinocchio's libs that are in the build tree.
Steps to reproduce the behavior:
pixi run configure pixi shell cd build ninja ldd unittest/pinocchio-test-cpp-model | grep pinocchio_default libpinocchio_default.so.3.4.0 => /home/antoine.bussy/work/pinocchio/build/src/libpinocchio_default.so.3.4.0 (0x00007b8be4e00000) ninja install ldd unittest/pinocchio-test-cpp-model | grep pinocchio_default libpinocchio_default.so.3.4.0 => /home/antoine.bussy/work/pinocchio/.pixi/envs/default/lib/libpinocchio_default.so.3.4.0 (0x00007c5e9de00000)
One possible cause is setting CMAKE_INSTALL_PREFIX=$CONDA_PREFIX in pixi.toml.
CMAKE_INSTALL_PREFIX=$CONDA_PREFIX
pixi.toml
The text was updated successfully, but these errors were encountered:
I'm willing to submit a PR if you tell me if and how you wish to fix this.
Sorry, something went wrong.
I do think @jorisv is the best to provide the proper guidance. Thanks a lot, @abussy-aldebaran, for this issue and your willingness.
You're welcome. Here are some ideas :
CMAKE_INSTALL_PREFIX
install
build
CMAKE_SKIP_INSTALL_RULES
jorisv
No branches or pull requests
Bug description
When using pixi to build pinocchio, after a
ninja install
, tests link with pinocchio's libs that are installed in.pixi/envs/...
.Expected behavior
When using pixi to build pinocchio, after a
ninja install
, tests link with pinocchio's libs that are in the build tree.Reproduction steps
Steps to reproduce the behavior:
Additional context
One possible cause is setting
CMAKE_INSTALL_PREFIX=$CONDA_PREFIX
inpixi.toml
.System
The text was updated successfully, but these errors were encountered: