make ui-setup & make ui-build command is working but
As I installed go1.20 version and then it’s shows me this error $ make server Dependency missing: go1.19. Ensure 'go1.19.x' is installed and available in your 'PATH' GOVERSION: 1.19 INSTALLED_GO_VERSION: go version go1.20.5 windows/amd64 fatal: No names found, cannot describe anything. cd server; cd cmd; go mod tidy; \ BUILD="" \ PROVIDER_BASE_URLS="https://meshery.layer5.io" \ PORT=9081 \ DEBUG=true \ ADAPTER_URLS="localhost:10000 localhost:10001 localhost:10002 localhost:10004 localhost:10005 localhost:10006 localhost:10007 localhost:10009 localhost:10010 localhost:10012" \ APP_PATH="./apps.json" \ go run main.go error.go; # runtime/cgo cc1.exe: sorry, unimplemented: 64-bit mode not compiled in make: *** [server] Error 1 fix this error
And after that, I removed the version and installed the go1.19 version and now I get this.
It’s your system’s architecture issue.
When running mingw-64-install.exe , you have to choose the x86_64 architecture on the settings screen while installing Mingw.
Alternatively, you can use WSL2 for more smoother development experience on windows.
Regarding that specific message, it seems as though this system is missing git-describe , causing a portion of the build process to fail. This portion of the build process determines the latest released version number of the Meshery project.