You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! One of the CI runs for a project I'm working on uses Julia built for x86, where the default integer type is Int32. It failed to precompile GeometricalPredicates with the following error:
and could be fixed by just adding type annotations for rotation::Int64, bitx::Int64, etc..
I don't know if x86 is something you want to support? But if not, could you maybe add a line about that in the readme, or get the precompile to fail with a more meaningful message?
I'm also happy to contribute a PR if that would be helpful.
Thanks!
The text was updated successfully, but these errors were encountered:
Hello! One of the CI runs for a project I'm working on uses Julia built for x86, where the default integer type is
Int32
. It failed to precompile GeometricalPredicates with the following error:Why this happens is pretty clear in the source:
GeometricalPredicates.jl/src/GeometricalPredicates.jl
Lines 993 to 1006 in 045d355
and could be fixed by just adding type annotations for
rotation::Int64
,bitx::Int64
, etc..I don't know if x86 is something you want to support? But if not, could you maybe add a line about that in the readme, or get the precompile to fail with a more meaningful message?
I'm also happy to contribute a PR if that would be helpful.
Thanks!
The text was updated successfully, but these errors were encountered: