Sick Gaming
PS4 SDK Installer Script to Compile the PS4SDK by Black Panther Read more at https:// - Printable Version

+- Sick Gaming (https://sickgaming.net)
+-- Forum: Console Gaming (https://sickgaming.net/forum-119.html)
+--- Forum: Sony Mods (https://sickgaming.net/forum-26.html)
+--- Thread: PS4 SDK Installer Script to Compile the PS4SDK by Black Panther Read more at https:// (/thread-83155.html)



PS4 SDK Installer Script to Compile the PS4SDK by Black Panther Read more at https:// - xSicKx - 06-28-2017

On this very merry X-Mas day following his PS4Payload IP Patcher, PlayStation 4 developer @DaBlackPantha made available a PS4-SDK Installer Script for compiling CTurt's Open Source PS4 SDK while we await Sony's official PS4 SDK to be leaked.

DOWNLOAD:
Hidden Content


Reply to this thread to unlock the contents


To quote from Black Panther: I made this for those (noobs) who want to make things for CTurts PS4-SDK but do not know how to compile/install the SDK.

What you Need:

   Linux Operating System (Mingw on windows might work, idk)
   root access
   bash installed (which in most cases, it will already be installed if not run apt-get install bash)

What this does:

   Installs LLVM 3.8, BINUTILS, and GIT (which are needed)
   clones the PS4-SDK into /usr/local
   compile the necessary libraries
   compile all the examples

Source:


Code:
#!/bin/bash #PS4SDK Install Script for noobs apt-get install llvm-3.8 apt-get install binutils apt-get install git cd /usr/local/ git clone https://github.com/CTurt/PS4-SDK.git export PS4SDK=/usr/local/PS4-SDK cd /usr/local/PS4-SDK/libPS4 make cd ../libusbfatfs make cd ../examples/camera make cd ../canvas make cd ../filesystem make cd ../hello make cd ../modules make cd ../pad make cd ../sockets make cd ../threads make cd ../usb/list_devices make cd ../storage make cd ../usbfatfs make printf "\nPS4 SDK Installer Script by Black Panther" printf "\nCredits to CTurt for his great SDK" printf "\nRead all the posts on his github for info!\n"