EngoEngine / engo

Engo is an open-source 2D game engine written in Go.
https://engoengine.github.io
MIT License
1.74k stars 136 forks source link

I cant get it running. #718

Closed jakubDoka closed 4 years ago

jakubDoka commented 4 years ago

When i import the "github.com/EngoEngine/engo" or any other package i get error message :

github.com/go-gl/glfw/v3.3/glfw

cc1.exe: sorry, unimplemented: 64-bit mode not compiled in

github.com/go-gl/gl/v2.1/gl

cc1.exe: sorry, unimplemented: 64-bit mode not compiled in I have no idea what this is and i canot find anything on internet eather.

otraore commented 4 years ago

Make sure you have the 64 bit version of the GCC compiler from Mingw-w64. You can get it here. I'm personally using WinBuilds. It should work after that because that error is usually from you having the 32 bit version installed.

jakubDoka commented 4 years ago

In deed i have. Thank you. I probably downloaded 32 by accident.

otraore commented 4 years ago

Glad that fixed you issue, let us know if you have any other questions or concerns.