Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 729 Bytes

File metadata and controls

30 lines (20 loc) · 729 Bytes

Build Gemini3D with GCC on Linux

This method also works for Windows WSL.

apt install cmake
# or
dnf install cmake

If CMake is too old, install a new CMake.

Build and Test Gemini3D

git clone https://github.com/gemini3d/gemini3d

cmake -S gemini3d -B gemini3d/build

cmake --build gemini3d/build

ctest --test-dir gemini3d/build

Troubleshooting

The compiler relies on libc and libstdc++. If build errors about "filesystem" at C++ link time, the system configuration may be messed up. If problems, ensure environment variable LD_LIBRARY_PATH has first the libc and libstdc++ for the GCC version you wish to use.