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
Hello, some libraries for instance HPCCM (https://github.com/NVIDIA/hpc-container-maker/blob/6c984440702525624b71f827d4f5126ce174ab2f/hpccm/building_blocks/nccl.py#L156) only calls make install, but since the install target only depends on the lib target the static library is not created. A possible solution is to make install depends on the build target.
make install
install
lib
build
The text was updated successfully, but these errors were encountered:
Update Makefile to install static library.
b523cff
Make sure make install also installs the static library. Fixes #662
That sounds like a good idea. I made a PR for that.
Sorry, something went wrong.
9bfc1c6
Successfully merging a pull request may close this issue.
Hello, some libraries for instance HPCCM (https://github.com/NVIDIA/hpc-container-maker/blob/6c984440702525624b71f827d4f5126ce174ab2f/hpccm/building_blocks/nccl.py#L156) only calls
make install
, but since theinstall
target only depends on thelib
target the static library is not created. A possible solution is to make install depends on thebuild
target.The text was updated successfully, but these errors were encountered: