Skip to content
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

x.py: XZ support is required to download LLVM with python3 #85476

Closed
willus10245 opened this issue May 19, 2021 · 8 comments
Closed

x.py: XZ support is required to download LLVM with python3 #85476

willus10245 opened this issue May 19, 2021 · 8 comments
Labels
A-contributor-roadblock Area: Makes things more difficult for new or seasoned contributors to Rust E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)

Comments

@willus10245
Copy link

$ ./x.py check
Updating only changed submodules
Submodules updated in 0.06 seconds
error: XZ support is required to download LLVM
help: consider disabling `download-ci-llvm` or using python3
Build completed unsuccessfully in 0:00:00

I also get this error when running python3 x.py check

I think this may have something to do with the fact that I use asdf-vm to manage my python version

$ which python
/Users/<user>/.asdf/shims/python

$ which python3
/Users/<user>/.asdf/shims/python3
@jyn514
Copy link
Member

jyn514 commented May 19, 2021

@willus10245 what is the output of python3 --version?

@willus10245
Copy link
Author

@jyn514 Python 3.8.0

@cuviper
Copy link
Member

cuviper commented May 19, 2021

I think it is possible to build Python without lzma if you don't have those devel files, but I'm not sure how to check if that's what happened except that the module is missing from your build.

@jyn514
Copy link
Member

jyn514 commented May 19, 2021

Hmm, lzma support was added in 3.3 (according to https://docs.python.org/3/library/tarfile.html), so that shouldn't be the issue. I tried this with 3.8 and can't reproduce:

$ ~/Downloads/python-3.8.10-embed-amd64/python.exe x.py check                                          Updating only changed submodules
Submodules updated in 0.39 seconds
downloading https://ci-artifacts.rust-lang.org/rustc-builds/36a4d14c7edba21bba14df00b9e6e4a111dfc6f2/rust-dev-nightly-x86_64-pc-windows-msvc.tar.xz
extracting C:\Users\Jeremy Nelson\src\rust\build\cache\llvm-36a4d14c7edba21bba14df00b9e6e4a111dfc6f2-False\rust-dev-nightly-x86_64-pc-windows-msvc.tar.xz
    Finished dev [unoptimized + debuginfo] target(s) in 0.68s

Are you using a fork of python or something? If you put support_xz in its own file and run it without the error handling, what errors do you get?

with tempfile.NamedTemporaryFile(delete=False) as temp_file:
temp_path = temp_file.name
with tarfile.open(temp_path, "w:xz"):
pass

@jyn514 jyn514 changed the title x.py check: error XZ support is required to download LLVM x.py: XZ support is required to download LLVM with python3 May 19, 2021
@jyn514 jyn514 added A-contributor-roadblock Area: Makes things more difficult for new or seasoned contributors to Rust T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example labels May 19, 2021
@cuviper
Copy link
Member

cuviper commented May 19, 2021

Could try a command like: python3 -c "import lzma; print(dir(lzma))"

@willus10245
Copy link
Author

I wonder it asdf-python is doing something weird on the install. When running the command @cuviper suggested, I got

$ python3 -c "import lzma; print(dir(lzma))"

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/Users/scottwiggins/.asdf/installs/python/3.8.0/lib/python3.8/lzma.py", line 27, in <module>
    from _lzma import *
ModuleNotFoundError: No module named '_lzma'

@jyn514
Copy link
Member

jyn514 commented May 19, 2021

Ok. This doesn't sound like something we can fix; the error message is correct, you can either disable download-ci-llvm or switch to a python that has XZ support.

@jyn514 jyn514 closed this as completed May 19, 2021
@willus10245
Copy link
Author

Looks like asdf-python uses pyenv/python-build under the hood. Passing the flags from this comment to asdf install python <version> fixed the issue.

CFLAGS="-I$(brew --prefix xz)/include" LDFLAGS="-L$(brew --prefix xz)/lib" asdf install python 3.8.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-contributor-roadblock Area: Makes things more difficult for new or seasoned contributors to Rust E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Projects
None yet
Development

No branches or pull requests

3 participants