-
Notifications
You must be signed in to change notification settings - Fork 15.5k
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
Building python binding with bazel on s390x #19232
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Gong Su <gong_su@hotmail.com>
We don't currently release or have plans to release python binary wheels for s390x. Is this a request for us to add s390x to our release, or is the purpose of this PR to add these config_settings to enable building for s390x yourself (and if so -- why)? |
@@ -458,6 +479,7 @@ py_dist( | |||
"win64": "310", | |||
"linux-x86_64": "38", | |||
"linux-aarch_64": "38", | |||
"linux-s390x": "38", |
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.
@gongsu832 Unfortunately I haven't been able to figure out any way to merge this change without breaking our CI, unless I delete this line. Otherwise our build fails because we don't have an appropriate toolchain installed for s390x. Is is still useful to merge the PR without this line? I guess that might still allow you to write your own py_dist()
target in a separate repo.
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.
Hi @acozzette thank you very much for trying to merge this PR. Yes it would still be very helpful for us if you could merge without that line.
Changes needed for building python binding with bazel on s390x.