-
Notifications
You must be signed in to change notification settings - Fork 11.9k
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
apt installation script failing for LLVM 18 on ubuntu 20.04 aarch64 #99453
Labels
Comments
An even easier repro with
System information:
|
I also met the same issue with Ubuntu 22 on the x86_64 architecture. |
I see the same thing for noble Ubuntu 24.04
|
vgvassilev
added a commit
to vgvassilev/clad
that referenced
this issue
Jul 19, 2024
We can re-enable only after llvm/llvm-project#99453 is resolved.
vgvassilev
added a commit
to vgvassilev/clad
that referenced
this issue
Jul 19, 2024
We can re-enable only after llvm/llvm-project#99453 is resolved.
This was referenced Jul 19, 2024
24h later still getting: $ sudo apt-get update
Hit:1 https://apt.llvm.org/jammy llvm-toolchain-jammy-18 InRelease
[...]
Fetched 2,235 kB in 1s (1,574 kB/s)
Reading package lists... Done
$ sudo apt-get install clang-18 libclang-18-dev lld-18 llvm-18-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libllvm18 : Breaks: llvm-18-dev (< 1:18.1.8-4) but 1:18.1.8~++20240717051017+3b5b5c1ec4a3-1~exp1~20240717171122.141 is to be installed
E: Unable to correct problems, you have held broken packages. halp? |
Working now! thanks! |
CheckmkCI
pushed a commit
to Checkmk/checkmk
that referenced
this issue
Jul 21, 2024
See llvm/llvm-project#99453 This reverts commit be2a7c8. Change-Id: I3eaa2210c7c564c0d60eda2606239195ad99e7b6
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is likely a dependency version mismatch on the packages installed via the
llvm.sh
script:To reproduce, here is a simple Dockerfile:
Building with
docker build --no-cache --progress=plain --file issue.dockerfile -t ubuntu20_llvm18 . 2>&1 | tee build.log
produces a long log, but here's the jist:uname -a
output:./llvm.sh ${LLVM_VERSION} all
relevant output:Note that when LLVM_VERSION is 17, there are no issues.
The text was updated successfully, but these errors were encountered: