You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have EmbedBitcode, which injects -fembed-bitcode into each invocation. This works pretty well on targets like macOS (where -fembed-bitcode has well-defined bitcode merging behavior), but not as well on Linux (where is just mashes bitcode streams together, creating an unparseable blob).
We should add another action, one that's roughly on par with WLLVM or GLLVM in terms of being able to extract a combined bitcode module from a binary by walking backwards through a list of referenced intermediate files.
The text was updated successfully, but these errors were encountered:
We currently have
EmbedBitcode
, which injects-fembed-bitcode
into each invocation. This works pretty well on targets like macOS (where-fembed-bitcode
has well-defined bitcode merging behavior), but not as well on Linux (where is just mashes bitcode streams together, creating an unparseable blob).We should add another action, one that's roughly on par with WLLVM or GLLVM in terms of being able to extract a combined bitcode module from a binary by walking backwards through a list of referenced intermediate files.
The text was updated successfully, but these errors were encountered: