Fix #570: Honor #![no_builtins] attribute by passing -fno-builtin to GCC#854
Fix #570: Honor #![no_builtins] attribute by passing -fno-builtin to GCC#854antoyo merged 6 commits intorust-lang:masterfrom
Conversation
This comment has been minimized.
This comment has been minimized.
|
Rebasing on master should fix the CI. |
833bf2e to
10921ab
Compare
This comment has been minimized.
This comment has been minimized.
antoyo
left a comment
There was a problem hiding this comment.
Could you please add a test for this?
Thanks!
10921ab to
290e465
Compare
|
|
It might require |
|
Oh sorry, I didn't see the |
|
It seems this flag mostly do one thing: disable a pass. |
|
it seems working with |
|
@antoyo just a heads-up that I’ve addressed all the feedback. Whenever you have a moment, I’d appreciate a fresh look at the PR. Thanks! |
|
I'm busy these days, so I might not get to your PRs until next week. |
| test_libcore(env, args)?; | ||
| extended_sysroot_tests(env, args)?; | ||
| cargo_tests(env, args)?; | ||
| no_builtins_tests(env, args)?; |
There was a problem hiding this comment.
The CI doesn't run tests through run_all, so please also add the flag to run these tests on this line.
Do not add it to matrix.commands since those tests are fast and as such, we don't need a separate CI job for them.
|
Thanks for your contribution! |


This fixes #570