-
Notifications
You must be signed in to change notification settings - Fork 0
Try building llvm with Julia 1.12 #72
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,6 +30,7 @@ jobs: | |
| BINARYBUILDER_CCACHE_DIR: ${{ github.workspace }}/binarybuilder_ccache | ||
| LLVM_VERSION: ${{ inputs.LLVM_VERSION }} | ||
| LLVM_VERSION_MAJOR: ${{ inputs.LLVM_VERSION_MAJOR }} | ||
| JULIA_REGISTRYCI_AUTOMERGE: true | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Maximize build disk space (Only remove unwanted software) | ||
|
|
@@ -55,7 +56,7 @@ jobs: | |
| verbose: false | ||
| - uses: julia-actions/setup-julia@v2 | ||
| with: | ||
| version: '1.7' | ||
| version: '~1.12.0-0' | ||
| arch: x64 | ||
| - name: Cache BinaryBuilder Storage Directory | ||
| if: inputs.save_cache | ||
|
|
@@ -97,7 +98,6 @@ jobs: | |
| fi | ||
|
|
||
| cd L/LLVM/LLVM_full@20 | ||
| rm -rf bundled/libcxx_patches | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Somewhat confused how musl is building currently
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This might just be applying a patch to the headers that the resultant libcxx will ship, so wouldn't cause a build failure (given we don't try building julia with musl). |
||
| if [ "$(ls -A $GITHUB_WORKSPACE/llvm-patches)" ]; then | ||
| cp $GITHUB_WORKSPACE/llvm-patches/* bundled/patches/ | ||
| fi | ||
|
|
||
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.
I always wondered if anyone would notice this trick for using BB in other Julia versions 😂