-
-
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
Segmentation fault when loading package #16905
Comments
Clickable link to package: https://github.com/KristofferC/ContMechTensors.jl Have you tried doing a |
I'll do one. |
Having to rebuild LLVM makes bisecting slow. |
Gone with |
I don't think there are any recursively defined types. The only types are: abstract AbstractTensor{order, dim, T <: Real} <: AbstractArray{T, order}
immutable SymmetricTensor{order, dim, T <: Real, M} <: AbstractTensor{order, dim, T}
data::NTuple{M, T}
end
immutable Tensor{order, dim, T <: Real, M} <: AbstractTensor{order, dim, T}
data::NTuple{M, T}
end and some |
Assertion failure in the deserializer Thread 1 hit Breakpoint 3, 0x00007f9be452b300 in __assert_fail () from /usr/lib/libc.so.6
(rr) up
#1 0x00007f9be4f3457e in jl_deserialize_lambdas_from_mod (s=0x7ffd9c8cf710) at /home/yuyichao/projects/julia/master/src/dump.c:1695
1695 assert(jl_is_datatype(gf));
(rr) p jl_(gf)
Union{Type{ContMechTensors.Tensor{#order<:Any, #dim<:Any, T<:Real, M<:Any}}, Type{ContMechTensors.SymmetricTensor{#order<:Any, #dim<:Any, T<:Real, M<:Any}}}
$16 = void |
yes, that's what yichao's assertion failure also indicated. it needs to call |
Pkg.clone("https://github.com/KristofferC/ContMechTensors.jl")
using ContMechTensors
Works on a ~3 week old master. Note that this package is basically the
@generated
-devil incarnate so that might have something to do with it.The text was updated successfully, but these errors were encountered: