We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://en.wikipedia.org/wiki/Linux_on_z_Systems
In our CI we are running "normal" Linux distributions like Ubuntu and Red Hat on s390/s390x.
To publish and fetch packages, we would need support for s390 (31bit, yes, gcc will need -m31) and s390x (64bit).
>>> import platform >>> platform.system() 'Linux' >>> platform.machine() 's390x' >>> platform.processor() 's390x' >>>
The text was updated successfully, but these errors were encountered:
Hi, we are going to need some help here. We have to know exactly which changes would Conan need to support this:
settings.yml
compiler_flags.py
If you could try manually to add the changes and verify if it works for you would be nice, honestly, it is the first time I hear about these systems.
Sorry, something went wrong.
Hi, no problem, I can implement it myself and prepare a PR with all the changes as soon as I have some time.
closes #4688 add support for linux on s390/s390x (#4810)
0215c6f
* add s390 and s390x to arch * add detection of s390/s390x * add test for compiler flags * add gnu triplet for s390/s390x
Successfully merging a pull request may close this issue.
https://en.wikipedia.org/wiki/Linux_on_z_Systems
In our CI we are running "normal" Linux distributions like Ubuntu and Red Hat on s390/s390x.
To publish and fetch packages, we would need support for s390 (31bit, yes, gcc will need -m31) and s390x (64bit).
The text was updated successfully, but these errors were encountered: