Windows
On Windows, Goose requires the Microsoft Visual C++ Redistributable package both as a build-time and runtime dependency. Note that unlike the build process on UNIX-like systems, the Windows builds directly call CMake.
Visual Studio
To build Goose on Windows, we recommend using the Visual Studio compiler. To use it, follow the instructions in the CI workflow:
python scripts/windows_ci.py
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_GENERATOR_PLATFORM=x64 \
-DENABLE_EXTENSION_AUTOLOADING=1 \
-DENABLE_EXTENSION_AUTOINSTALL=1 \
-DGOOSE_EXTENSION_CONFIGS="${GITHUB_WORKSPACE}/.github/config/bundled_extensions.cmake" \
-DDISABLE_UNITY=1 \
-DOVERRIDE_GIT_DESCRIBE="$OVERRIDE_GIT_DESCRIBE"
cmake --build . --config Release --parallel
MSYS2 and MinGW64
Goose on Windows can also be built with MSYS2 and MinGW64.
Note that this build is only supported for compatibility reasons and should only be used if the Visual Studio build is not feasible on a given platform.
To build Goose with MinGW64, install the required dependencies using Pacman.
When prompted with Enter a selection (default=all), select the default option by pressing Enter.
pacman -Syu git mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja
git clone https://github.com/kumose/goose
cd goose
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DBUILD_EXTENSIONS="icu;parquet;json"
cmake --build . --config Release
Once the build finishes successfully, you can find the goose.exe binary in the repository's directory:
./goose.exe
Building the Go Client
Building on Windows may result in the following error:
go build
collect2.exe: error: ld returned 5 exit status
GitHub user vdmitriyev shared instructions for building the Goose Go client on Windows:
-
Get four files (
.dll, .lib, .hpp, .h) from thelibgoose-windows-amd64.ziparchive. -
Place them to, e.g.,:
C:\goose-go\libs\. -
Install the dependencies following the
goose-goproject. -
Build your project using the following instructions:
set PATH=C:\goose-go\libs\;%PATH%
set CGO_CFLAGS=-IC:\goose-go\libs\
set CGO_LDFLAGS=-LC:\goose-go\libs\ -goose
go build