-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
unix/make: Drop i686-linux-gnu path. #17638
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
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #17638 +/- ##
=======================================
Coverage 98.44% 98.44%
=======================================
Files 171 171
Lines 22192 22192
=======================================
Hits 21847 21847
Misses 345 345 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Code size report:
|
6def61b
to
81cf760
Compare
tests/extmod/select_poll_eintr.py
Outdated
@@ -24,6 +24,7 @@ | |||
|
|||
|
|||
def thread_main(): | |||
global lock |
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.
lock
is not assigned in this function, so we don't need a global
statement.
7d24105
to
400dba8
Compare
Thanks for the contribution. The problem with |
400dba8
to
81cf760
Compare
@dpgeorge, thank you for the information. I've dropped it. Please let me know if there are more things to do with this PR. |
This drops use of non-existing path `/usr/include/i686-linux-gnu` as default include paths shall suffice. Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
81cf760
to
aa2362d
Compare
Summary
This drops use of non-existing path
/usr/include/i686-linux-gnu
as default toolchain include paths shall suffice for 32bit.Testing
Checked locally on amd64 PC host running Ubuntu 22.04 with gcc v11.4 and following configs:
make -C ports/unix VARIANT=nanbox MICROPY_PY_FFI=1 test -j4
make -C ports/unix MICROPY_FORCE_32BIT=1 test -j4
make -C ports/unix test -j4