Code Monkey home page Code Monkey logo

Comments (11)

Antiswitcher avatar Antiswitcher commented on June 4, 2024

Lubuntu

from goesp.

danielkrupinski avatar danielkrupinski commented on June 4, 2024

What's your GCC version?

from goesp.

Antiswitcher avatar Antiswitcher commented on June 4, 2024

gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0

from goesp.

danielkrupinski avatar danielkrupinski commented on June 4, 2024

Update to at least 9.3.0.

from goesp.

Antiswitcher avatar Antiswitcher commented on June 4, 2024

I installed gcc 10 and g++ 10, still giving same-ish error

make -j $(nproc --all)
[ 4%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Config.cpp.o
[ 9%] Building CXX object CMakeFiles/GOESP.dir/GOESP/GUI.cpp.o
[ 14%] Building CXX object CMakeFiles/GOESP.dir/GOESP/GameData.cpp.o
[ 19%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Hacks/Misc.cpp.o
[ 23%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Hacks/ESP.cpp.o
[ 28%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Hooks.cpp.o
[ 33%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Helpers.cpp.o
[ 38%] Building CXX object CMakeFiles/GOESP.dir/GOESP/Memory.cpp.o
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Hooks.cpp:3:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Helpers.cpp:6:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
compilation terminated.
compilation terminated.
CMakeFiles/GOESP.dir/build.make:172: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Hooks.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Hooks.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
CMakeFiles/GOESP.dir/build.make:159: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Helpers.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Helpers.cpp.o] Error 1
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.cpp:9:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
compilation terminated.
CMakeFiles/GOESP.dir/build.make:81: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Config.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Config.cpp.o] Error 1
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/GUI.cpp:5:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
compilation terminated.
CMakeFiles/GOESP.dir/build.make:107: recipe for target 'CMakeFiles/GOESP.dir/GOESP/GUI.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/GUI.cpp.o] Error 1
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/GameData.cpp:8:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Hacks/Misc.cpp:7:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Hacks/../Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
compilation terminated.
compilation terminated.
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Hacks/ESP.cpp:8:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Hacks/../Config.h:4:10: fatal error: filesystem: No such file or directory
#include
^~~~~~~~~~~~
compilation terminated.
CMakeFiles/GOESP.dir/build.make:120: recipe for target 'CMakeFiles/GOESP.dir/GOESP/GameData.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/GameData.cpp.o] Error 1
CMakeFiles/GOESP.dir/build.make:146: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Hacks/Misc.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Hacks/Misc.cpp.o] Error 1
CMakeFiles/GOESP.dir/build.make:133: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Hacks/ESP.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Hacks/ESP.cpp.o] Error 1
In file included from /home/lafont/Desktop/csgo/GOESP-master/GOESP/Memory.cpp:8:0:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Memory.h: In lambda function:
/home/lafont/Desktop/csgo/GOESP-master/GOESP/Memory.h:76:53: error: ‘class std::basic_string_view’ has no member named ‘ends_with’
if (std::string_view{ info->dlpi_name }.ends_with(moduleInfo->name)) {
^~~~~~~~~
CMakeFiles/GOESP.dir/build.make:198: recipe for target 'CMakeFiles/GOESP.dir/GOESP/Memory.cpp.o' failed
make[2]: *** [CMakeFiles/GOESP.dir/GOESP/Memory.cpp.o] Error 1
CMakeFiles/Makefile2:94: recipe for target 'CMakeFiles/GOESP.dir/all' failed
make[1]: *** [CMakeFiles/GOESP.dir/all] Error 2
Makefile:102: recipe for target 'all' failed
make: *** [all] Error 2

from goesp.

danielkrupinski avatar danielkrupinski commented on June 4, 2024

Make sure CMake uses g++10.
See

run: mkdir Release && cd Release && cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_COMPILER=gcc-10 -D CMAKE_CXX_COMPILER=g++-10 ..

from goesp.

Antiswitcher avatar Antiswitcher commented on June 4, 2024

Compiled fine, How do I inject/load on linux?

from goesp.

Antiswitcher avatar Antiswitcher commented on June 4, 2024

I don't see a compiled file

from goesp.

danielkrupinski avatar danielkrupinski commented on June 4, 2024

You can use load script from Fuzion. Binary is located inside Release folder.

from goesp.

Antiswitcher avatar Antiswitcher commented on June 4, 2024

I'm not exactly sure how I use this. I have the compiled .so, but it's asking me to download the entire cheat suite of fuzion.

from goesp.

danielkrupinski avatar danielkrupinski commented on June 4, 2024

Just edit that script to load your libGOESP.so.

from goesp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.