Skip to content

Commit

Permalink
Demangle (#123)
Browse files Browse the repository at this point in the history
* Attempt to fix demangling

* Fixup demangling, also general cleanup

* Check names after constructing llvm module

* Equivalent demangling on non-mac systems

* Bump version to 0.4.12

* Test against released version of 1.9
  • Loading branch information
brenhinkeller authored May 14, 2023
1 parent 70d4065 commit a571cb1
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 130 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9.0-rc3'
- '1.8'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
version:
- '1.8'
- '^1.9.0-rc3'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -30,7 +30,7 @@ jobs:
include:
- arch: x86
version: '1'
os: ubuntu-latest
os: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StaticCompiler"
uuid = "81625895-6c0f-48fc-b932-11a18313743c"
authors = ["Tom Short and contributors"]
version = "0.4.11"
version = "0.4.12"

[deps]
Clang_jll = "0ee61d77-7f21-5576-8119-9fcc46b10100"
Expand Down
Loading

2 comments on commit a571cb1

@brenhinkeller
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/83554

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.12 -m "<description of version>" a571cb1d473b4bfa4ba293fbfc71a8b5c2e41176
git push origin v0.4.12

Please sign in to comment.