- What version of Go are you using (
go version)? 1.6.3 x386 (although no issue for older versions like 1.3.3 x386; no issues for 64-bit version of 1.6.3). Unfortunately, circumstances require that I use 32-bit in order to connect to legacy database...
- What operating system and processor architecture are you using (
go env)?
Windows 64, however I have to use x386 version of Go due to legacy database that is 32-bit
- What did you do?
Tried to compile a simple program (like "hello world" simple). Since I don't have admin rights on this machine, had to download / use binary Go compiler. So, I have to build with a command like c:\go\bin\go.exe build. This has worked with previous versions of Go. Here's the error message I get when I try building : go build command-line-arguments: c:\go\pkg\tool\windows_386\compile.exe: exit status 1073741855
- What did you expect to see?
No error
- What did you see instead?
Using version 1.6:
go build command-line-arguments: c:\go\pkg\tool\windows_386\compile.exe: exit status 1073741855
Take away: There is some issue with Windows x386 version that did not exist previously. Thanks!
go version)? 1.6.3 x386 (although no issue for older versions like 1.3.3 x386; no issues for 64-bit version of 1.6.3). Unfortunately, circumstances require that I use 32-bit in order to connect to legacy database...go env)?Windows 64, however I have to use x386 version of Go due to legacy database that is 32-bit
Tried to compile a simple program (like "hello world" simple). Since I don't have admin rights on this machine, had to download / use binary Go compiler. So, I have to build with a command like
c:\go\bin\go.exe build. This has worked with previous versions of Go. Here's the error message I get when I try building :go build command-line-arguments: c:\go\pkg\tool\windows_386\compile.exe: exit status 1073741855No error
Using version 1.6:
go build command-line-arguments: c:\go\pkg\tool\windows_386\compile.exe: exit status 1073741855Take away: There is some issue with Windows x386 version that did not exist previously. Thanks!