-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Reland "Relax arguments around local engine, build hello_world with bitcode" #39434
New issue
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
Conversation
…h bitcode (flutter#39357)" (flutter#39431)" This reverts commit 393106f.
jonahwilliams
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
|
||
| RunCommand eval "$(echo "static const int Moo = 88;" | xcrun clang -x c \ | ||
| ${arch_flags} \ | ||
| -fembed-bitcode-marker \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love this.
jmagman
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov Report
@@ Coverage Diff @@
## master #39434 +/- ##
==========================================
- Coverage 57.2% 57.17% -0.03%
==========================================
Files 195 195
Lines 18510 18496 -14
==========================================
- Hits 10588 10575 -13
+ Misses 7922 7921 -1
Continue to review full report at Codecov.
|
|
Going to land this while the tree is green - the windows related tests that are still pending have no relevance to this change. |
Relands #39357
This failed on the devicelab because the binary stub we build for JIT based builds needs to have embedded bitcode as well. I'm always embedding a bitcode marker here, because it should always be safe to do so. Relevant change is in a2009ce
Fixes #15288 again