Home >Backend Development >Golang >How to switch between x32 and x64 applications in Goland?
php editor Banana will introduce you to how to switch between x32 and x64 applications in Goland. In Goland, switching the bitness of an application is very simple. First, open the project you want to switch. Then, in Goland's top menu bar, find and click the "Run" option. Next, select "Edit Configurations". In the pop-up dialog box, you will see an option for "Go Build Tags". Here you can enter "-tags" followed by the tags you want to use, such as "amd64" or "x86". Finally, click "OK" to save changes. Now you have successfully switched between x32 and x64 applications.
I use Goland v. 2020.1 and want to compile x32 and x64 Windows versions of my program. what should I do?
I think what you want to ask is how to set up GOOS and GOARCH in GoLand. If you use the go build directive, there are environment settings and program parameters for the build flag on the build configuration.
The above is the detailed content of How to switch between x32 and x64 applications in Goland?. For more information, please follow other related articles on the PHP Chinese website!