Mousetrap.jl icon indicating copy to clipboard operation
Mousetrap.jl copied to clipboard

Problem installing on Windows 32-bit

Open fcdimitr opened this issue 1 year ago • 1 comments

When trying to add the package on a Windows 32-bit machine, I get the following error

ERROR: LoadError: UndefVarError: `mousetrap_julia_binding` not defined

Are there any workarounds? Thank you!

fcdimitr avatar Dec 21 '23 07:12 fcdimitr

Mousetrap is not supported on 32-bit Windows, as is stated here. Only 64-bit system are supported.

The reason for this is that I was unable to link against the 32-bit version of Windows' OpenGL implementation OPENGL32.dll, so I added this condition to prevent mousetrap_jll to compile for 32-bit systems. Because of that, there is no artifact mousetrap_julia_binding on that OS, hence your error message.

Clemapfel avatar Dec 28 '23 22:12 Clemapfel