Hobbies And Interests
Home  >> Internet Games >> PS3 Games

How to Compile Using PSL1GHT

Homebrew is a term used to describe a category of games created by independent video-game developers for proprietary video game consoles such as PlayStation 3. Video games are developed using a wide variety of programming languages and compiled on desktop computers. In order to complete this the task, software developers use the PSL1GHT software development kit, or SDK, which provides a framework for developing programs for PS3. There are three key steps to compiling using PSL1GHT: creating the directories, installing a PS3 toolchain and installing the PSL1GHT, all of which is done from the command line prompt.

Instructions

    • 1

      Click on the "Start" button, then click "Run." Enter "cmd" in the text field and press "Enter" to open a command line tool in Windows. Click "Applications" in Finder, then click "Terminal" to open a command line tool on Mac OS X.

    • 2

      Type "sudo mkdir $PS3DEV." This command creates a directory to use PSL1GHT in.

    • 3

      Enter "sudo git clone https://github.com/ps3dev/ps3toolchain.git $BUILDDIR," which instructs the system to acquire the PS3 Toolchain module that PSL1GHT requires to operate. Next, type "sudo chown -R $USER $BUILDDIR," which gives you, the computer owner, explicit access to alter the build directory, "BUILDDIR."

    • 4

      Move to the BUILDDIR directory with the command, "cd $BUILDDIR," and enter "./toolchain.sh" to build the PS3 Toolchain program.

    • 5

      Type "sudo git clone https://github.com/ps3dev/PSL1GHT.git /usr/src/psl1ght" to download PSL1GHT. Change its permissions so that you have full control with the command, "sudo chown -R $USER /usr/src/psl1ght."

    • 6

      Move to the PSL1GHT directory with the command, "cd /usr/src/psl1ght," and build this application file by typing: "make all install." When the command prompt reappears, the system is ready to compile using PSL1GHT.

    • 7

      Set up a compile directory with the command, "mkdir ~/ps3dev." Next, place your application files in this directory with the command "mv ~/ps3dev dirname" where "dirname" is the name of the application directory.

    • 8

      Type "cd ~/ps3dev/dirname" and then enter "make" to compile using PSL1GHT.


https://www.htfbw.com © Hobbies And Interests