-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Compile error on 32-bit ARM: debuginfo.cpp:228:33: error: 'L' was not declared in this scope
#44254
Labels
Comments
Just replacing the call with getLoadAddress should be fine – for non-JITLink platforms, the change is supposed to be just a refactoring. |
dnadlinger
added a commit
to dnadlinger/julia
that referenced
this issue
Feb 19, 2022
This slipped through in 955d427, as we aren't building for 32 bit ARM during CI right now. GitHub: Fixes JuliaLang#44254.
dnadlinger
added a commit
to dnadlinger/julia
that referenced
this issue
Feb 20, 2022
This slipped through in 955d427, as we aren't building for 32 bit ARM during CI right now. GitHub: Fixes JuliaLang#44254.
staticfloat
pushed a commit
to JuliaCI/julia-buildkite-testing
that referenced
this issue
Mar 2, 2022
This slipped through in 955d427, as we aren't building for 32 bit ARM during CI right now. GitHub: Fixes JuliaLang#44254.
LilithHafner
pushed a commit
to LilithHafner/julia
that referenced
this issue
Mar 8, 2022
This slipped through in 955d427, as we aren't building for 32 bit ARM during CI right now. GitHub: Fixes JuliaLang#44254.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While working on updating libjulia_jll for Julia 1.9, I've run into this compiler error:
Looking at the code in question, indeed there is access to a variable
L
that is not defined. This can be traced back to PR #43664 by @dnadlinger, which replacedby
yet retained the code section with the offending line
I don't know enough about this code to guess at how it should be fixed.
Also, it seems CI does not report this because there are no 32bit ARM test being conducted. That's a pity :-(
The text was updated successfully, but these errors were encountered: