MySQL.jl
MySQL.jl copied to clipboard
Method overwriting is not permitted during Module precompilation
Using Julia 1.10 I get the error below. I am not sure how to fix this though....
WARNING: Method definition mysql_get_option(Ptr{Nothing}, Integer, Ref{UInt32}) in module API at C:\Users\bernhard.koenig\.julia\packages\MySQL\pGOcg\src\api\ccalls.jl:218 overwritten at C:\Users\bernhard.koenig\.julia\packages\MySQL\pGOcg\src\api\ccalls.jl:225.
ERROR: Method overwriting is not permitted during Module precompilation. Use `__precompile__(false)` to opt-out of precompilation.
Ok, adding __precompile__(false) is a workaround for now
__precompile__(false)
module MyModule
#bla
end
Hello, solved in 1.4.6