crypto/bn/build.info: define OPENSL_IA32_SSE2 globally when needed#9679
Closed
levitte wants to merge 2 commits intoopenssl:masterfrom
Closed
crypto/bn/build.info: define OPENSL_IA32_SSE2 globally when needed#9679levitte wants to merge 2 commits intoopenssl:masterfrom
levitte wants to merge 2 commits intoopenssl:masterfrom
Conversation
2 tasks
Member
|
No not yet working. the asm module does not define gcm_*_clmul it has this nice gadget: all of them have that, but mostly it is beinign just lost performance. |
Member
Author
|
That's odd. It should have ended up in LIB_CPPFLAGS... I think, but I will have another look to make sure. |
Member
|
|
Member
Author
|
Gotcha. Will fix soon |
DEFINE[] definitions end up pushed in @{$config{defines}} instead of
being added to the output file list of defines. This allows for the
unusual case where we need something to be defined globally, so it
gets picked up by anything using $(CPPFLAGS).
This is done conditionally.
Member
Author
|
How about now? |
levitte
added a commit
that referenced
this pull request
Aug 23, 2019
DEFINE[] definitions end up pushed in @{$config{defines}} instead of
being added to the output file list of defines. This allows for the
unusual case where we need something to be defined globally, so it
gets picked up by anything using $(CPPFLAGS).
Reviewed-by: Bernd Edlinger <[email protected]>
(Merged from #9679)
levitte
added a commit
that referenced
this pull request
Aug 23, 2019
This is done conditionally. Reviewed-by: Bernd Edlinger <[email protected]> (Merged from #9679)
Member
Author
levitte
pushed a commit
that referenced
this pull request
Sep 26, 2019
Commit b6b6657 (PR #9679) renamed most POD files. This change causes find-doc-nits to flag misnamed files. Also fix the two misnamed files that it found. Reviewed-by: Richard Levitte <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from #10000)
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 required an extension of the DEFINE syntax, to allow
DEFINE[]=defDEFINE[]definitions end up pushed in@{$config{defines}}instead ofbeing added to the output file list of defines. This allows for the
unusual case where we need something to be defined globally, so it
gets picked up by anything using
$(CPPFLAGS).