-
-
Notifications
You must be signed in to change notification settings - Fork 419
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
update llvm to 18.1.8 #6224
base: dev
Are you sure you want to change the base?
update llvm to 18.1.8 #6224
Conversation
@waruqi It looks like Maybe we can have |
we can not get version in on_source, because it has not been resolved yet. |
packages/l/llvm/xmake.lua
Outdated
add_versions("16.0.6", "5e1f560f75e7a4c7a6509cf7d9a28b4543e7afcb4bcf4f747e9f208f0efa6818") | ||
add_versions("17.0.6", "ce78b510603cb3b347788d2f52978e971cf5f55559151ca13a73fd400ad80c41") | ||
add_versions("18.1.1", "9f59dd99d45f64a5c00b00d27da8fe8b5f162905026f5c9ef0ade6e73ae18df3") | ||
if package:version():ge("18.1.8") then |
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.
we cannot access package instance in description scope.
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.
Should I drop the version 18.1.8
if on_source
is not available ?
I understand that, but you told me to use |
I didn't notice it was called in on_source |
packages/l/llvm/xmake.lua
Outdated
local precompiled = false | ||
local requiredversion = semver.new(package:requireinfo().version) |
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.
package:requireinfo().version maybe nil, latest, version range, e.g. ">=18.1.8 <19.0", "18.x"
it has been not resolved yet.
No description provided.