Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skiff/PS4-CleanELF
Cleaned elf for PS4 supporting c++ and includes imports and utility classes
https://github.com/skiff/PS4-CleanELF
Last synced: 3 months ago
JSON representation
Cleaned elf for PS4 supporting c++ and includes imports and utility classes
- Host: GitHub
- URL: https://github.com/skiff/PS4-CleanELF
- Owner: skiff
- Created: 2018-12-14T19:23:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-25T20:49:41.000Z (over 4 years ago)
- Last Synced: 2024-05-19T03:01:30.673Z (9 months ago)
- Language: C++
- Size: 15.6 KB
- Stars: 16
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-PS4-Jailbreak - PS4 CleanELF
README
# Playstation 4 Cleaned ELF
This is a source for building ELF files on the PS4
This is not system version specific, so it will work on 4.05, 4.55, 5.05 etc# Includes
- C++ Compiler
- Detour Functions (Example of how to do a stub)
- Vector classes and functions
- Imports (Libc, Network, Threads, Notify)
- Socket Printf# How to Use
- Make sure you have cc1plus installed (sudo apt-get install g++)
- Go to directory with the Makefile on Linux Shell
- type 'make'
- project.elf is your exectuable
- Load with jkpatch or api of your choice# Known Issues:
- Because we do not use stdlib (-fnostdlib), there are some limitations like not having global variables with constructors. As an example, in my vector class there is a constructor and deconstructor. If you try make a global vec3_t or vec2_t variable, it will not link because the constructor for the variable is never being called. If anyone knows how to fix this without using the g++ standards let me know# Credits
- Sabotage: how to do x64 detours
- 2much4u/xemio: makefile/building examples