danielkrupinski / GOESP

Cross-platform streamproof ESP hack for Counter-Strike: Global Offensive, written in modern C++. Rendering and GUI powered by Dear ImGui + FreeType.
MIT License
433 stars 72 forks source link

[Error] Linux Compile #88

Closed rafalohaki closed 3 years ago

rafalohaki commented 3 years ago

image my commands: sudo apt-get install cmake gcc-10 g++-10 libsdl2-dev mkdir Release cd Release cmake -D CMAKE_BUILD_TYPE=Release .. make -j $(nproc --all)

full output: https://0bin.net/paste/+QgUyu5L#raWBNQ+T16J90i2G+qPTxIpQedPufkhsE7d9TqoK+bU

danielkrupinski commented 3 years ago

Try: cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_COMPILER=gcc-10 -D CMAKE_CXX_COMPILER=g++-10 ..