You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I receive an error when I run the go build command. The error is related to GCC for the component: o365-attack-toolkit/vendor/github.com/mattn/go-sqlite3
More details of the bug are mentioned later in this post.
I am using Windows 7 x64 OS.
I used the following steps:
Installed Go in the path: C:\go
Created a directory called C:\go-work
Added the above path to GOPATH environment variable for the current user
I receive an error when I run the go build command. The error is related to GCC for the component: o365-attack-toolkit/vendor/github.com/mattn/go-sqlite3
More details of the bug are mentioned later in this post.
I am using Windows 7 x64 OS.
I used the following steps:
Installed Go in the path: C:\go
Created a directory called C:\go-work
Added the above path to GOPATH environment variable for the current user
echo %GOPATH% shows the output as: "C:\go-work"
cd %GOPATH%
git clone https://github.com/mdsecactivebreach/o365-attack-toolkit
cd o365-attack-toolkit
dep ensure command here gives me the following error:
root project import: C:\go-work\o365-attack-toolkit is not within any GOPATH/src
To resolve the above issue, I moved the entire o365-attack-toolkit directory to the c:\go-work\src
Now, when I run dep ensure command, it returns back to the prompt (so maybe it ran successfully?)
Above command gives the following error:
For GCC support on Windows 7 x64, I installed Cygwin x64 and then used the following command to install GCC and dependencies:
C:\cygwin64>setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel
I added the C:\cygwin64\bin folder to the PATH environment variable as well.
The text was updated successfully, but these errors were encountered: