[cpullvm] Add basic information about multilib#255
Merged
jonathonpenix merged 2 commits intoqualcomm:qualcomm-softwarefrom Mar 11, 2026
Merged
[cpullvm] Add basic information about multilib#255jonathonpenix merged 2 commits intoqualcomm:qualcomm-softwarefrom
jonathonpenix merged 2 commits intoqualcomm:qualcomm-softwarefrom
Conversation
d555bbd to
f4e7829
Compare
apazos
reviewed
Mar 11, 2026
| ## Multilib | ||
| CPULLVM automatically selects a set of headers and runtimes libraries to use when compiling and linking based on | ||
| the set of arguments passed on the command line. A warning will be emitted if no appropriate set of headers/libraries | ||
| can be found. |
Contributor
There was a problem hiding this comment.
can the warning be suppressed if build has to be clean of warnings, please indicate how
Contributor
Author
There was a problem hiding this comment.
It works the same as any other warning.
I'm hesitant to put it here--people should not be disabling this unless they know what they're up to, at which point they should be able to figure out how to turn the warning off.
Contributor
There was a problem hiding this comment.
this might be information useful in the migration guide - please if you do not want to add it here, share it with CE team
While here, also update our main README to point to new docs we've added or updated. Signed-off-by: Jonathon Penix <jpenix@qti.qualcomm.com>
Fixups per reviewer feedback Signed-off-by: Jonathon Penix <jpenix@qti.qualcomm.com>
153a44e to
e250bf1
Compare
apazos
approved these changes
Mar 11, 2026
Contributor
Author
|
/cherry-pick be45ff1 |
Contributor
|
/pull-request #261 |
jonathonpenix
added a commit
that referenced
this pull request
Mar 11, 2026
While here, also update our main README to point to new docs we've added or updated. (cherry picked from commit be45ff1) Signed-off-by: Jonathon Penix <jpenix@qti.qualcomm.com> Co-authored-by: Jonathon Penix <jpenix@qti.qualcomm.com>
sriyalamar
pushed a commit
to sriyalamar/cpullvm-toolchain
that referenced
this pull request
Apr 7, 2026
Fixes llvm/llvm-project#169270 Changes the implementation of `is_finite` to emit fewer instructions, e.g. X86_64 ```asm old: # 18 bytes movd %xmm0, %eax andl $2147483647, %eax cmpl $2139095040, %eax setl %al retq new: # 15 bytes movd %xmm0, %eax addl %eax, %eax cmpl $-16777216, %eax setb %al retq ``` Aarch64 ```asm old: fmov w9, s0 mov w8, #2139095040 and w9, w9, #0x7fffffff cmp w9, w8 cset w0, lt ret new: fmov w8, s0 ubfx w8, w8, qualcomm#23, qualcomm#8 cmp w8, qualcomm#255 cset w0, lo ret ``` See the issue for more information. (cherry picked from commit 73cddef)
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.
While here, also update our main README to point to new docs we've added or updated.