Update Makefile : Fix Library Path for HEXL in Makefile#8
Open
supreet-shukla wants to merge 1 commit intolazer-crypto:mainfrom
Open
Update Makefile : Fix Library Path for HEXL in Makefile#8supreet-shukla wants to merge 1 commit intolazer-crypto:mainfrom
supreet-shukla wants to merge 1 commit intolazer-crypto:mainfrom
Conversation
This PR updates the Makefile to correct the path of the HEXL library. The previous version referenced lib64/libhexl.a, which has been modified to lib/libhexl.a to ensure compatibility with the latest build structure.
Reason for Change:
The correct path for libhexl.a is lib/ instead of lib64/.
Ensures compatibility with the current build setup.
Impact:
Fixes build issues related to incorrect library paths.
Ensures that the linking process completes successfully with the correct HEXL library.
Contributor
|
On some systems HEXL will be installed to lib64/. So this will fix the build problem for systems, where HEXL is installed to lib/ but break the build for systems, where HEXL is installed to lib64/. Ideally, the build system would detect the correct path instead of hard coding it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the Makefile to correct the path of the HEXL library. The previous version referenced lib64/libhexl.a, which has been modified to lib/libhexl.a to ensure compatibility with the latest build structure.
Reason for Change:
Impact: