Tools: Difference between revisions
Jump to navigation
Jump to search
(Added Arm Toolchain) |
|||
Line 41: | Line 41: | ||
http://www.playstation.com/pss/developer/openbeta/download.html<br /> | http://www.playstation.com/pss/developer/openbeta/download.html<br /> | ||
http://www.playstation.com/pss/developer/openbeta/index_e.html | http://www.playstation.com/pss/developer/openbeta/index_e.html | ||
== ARM Toolchain == | |||
* GNU C and C++ compilers (gcc-4.6.3) | |||
* GNU assembler and linker | |||
* C and C++ runtime libraries | |||
* GNU debugger (gdb-7.3.1) | |||
<pre>export AS := arm-none-eabi-as | |||
export CC := arm-none-eabi-gcc | |||
export CXX := arm-none-eabi-g++ | |||
export AR := arm-none-eabi-ar | |||
export LD ?= arm-none-eabi-gcc | |||
export STRIP := arm-none-eabi-strip | |||
export OBJCOPY := arm-none-eabi-objcopy | |||
CFLAGS = -Wall -mcpu=cortex-a9 | |||
CXXFLAGS = $(CFLAGS)</pre> | |||
[https://github.com/wargio/vitatoolchain Download] |
Revision as of 13:43, 11 September 2012
PS VITA Firmware xTractor
|
PS VITA .pkg xTractor
|
PS VITA Live Area preViewer
|
Vitatools
These tools are based on the ps3tools made by fail0verflow team.
vitatools git
Tools Available now
- pupunpack
- unpkg
- pkg_reader (unfinished)
PLAYSTATION®SUITE SDK BETA VERSION
http://www.playstation.com/pss/developer/openbeta/download.html
http://www.playstation.com/pss/developer/openbeta/index_e.html
ARM Toolchain
- GNU C and C++ compilers (gcc-4.6.3)
- GNU assembler and linker
- C and C++ runtime libraries
- GNU debugger (gdb-7.3.1)
export AS := arm-none-eabi-as export CC := arm-none-eabi-gcc export CXX := arm-none-eabi-g++ export AR := arm-none-eabi-ar export LD ?= arm-none-eabi-gcc export STRIP := arm-none-eabi-strip export OBJCOPY := arm-none-eabi-objcopy CFLAGS = -Wall -mcpu=cortex-a9 CXXFLAGS = $(CFLAGS)