8000 gh-71052: Fix several Android build issues by mhsmith · Pull Request #115955 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-71052: Fix several Android build issues #115955

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

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove iOS from ac_cv_aligned_required check
  • Loading branch information
mhsmith committed Feb 28, 2024
commit ca78b3846d2260abc2e17d5ef29f8b33f055fda4
5 changes: 3 additions & 2 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3686,8 +3686,9 @@ int main(void)
[ac_cv_aligned_required=no],
[ac_cv_aligned_required=yes],
[
# "yes" changes the hash function to FNV, which breaks Numba.
if test "$ac_sys_system" = "Linux-android" || test "$ac_sys_system" = "iOS"; then
# "yes" changes the hash function to FNV, which causes problems with Numba
# (https://github.com/numba/numba/blob/0.59.0/numba/cpython/hashing.py#L470).
if test "$ac_sys_system" = "Linux-android"; then
ac_cv_aligned_required=no
else
ac_cv_aligned_required=yes
Expand Down
0