Advertising (This ad goes away for registered users. You can Login or Register)

[DEV TUT] macOS vitasdk from source: built and installation

Post here your guides, tips, how-to, etc...
Locked
domis4
Posts: 12
Joined: Sun Jun 12, 2011 8:19 am

[DEV TUT] macOS vitasdk from source: built and installation

Post by domis4 »

Hey /talk,

i previously found out the vitasdk builts are unaccessable. So i built my own from the latest master and like to share with you the way i did it. I created the tutorial on github and will update it. I'll update there first, but keep this thread updated too. Please excuse any spelling mistakes, english is not my first language.

prerequisits:
- macOS Sierra (older OS X Versions might work too)
- brew

needed packages:
- cmake
- git

install packages via :

Code: Select all

brew install cmake git
built vitasdk from source:
create a directory for your dependencies. E.G.: Documents/vitasdk

Code: Select all

cd Documents/vitasdk
git clone https://github.com/vitasdk/buildscripts.git
mkdir build
cd build
cmake ..
Lean back and wait cmake to finish. This took me 2 hours.
Now vitasdk is compiled in

Code: Select all

Documents/vitasdk/build/
install vitasdk and add to $PATH
- as suggested in https://henkaku.xyz/developer/ move the

Code: Select all

Documents/vitasdk/build
to

Code: Select all

/usr/local/vitasdk
- edit

Code: Select all

sudo nano /etc/paths
and add the location of your

Code: Select all

vitasdk/bin
folder.
In case you copied it to

Code: Select all

usr/local/vitasdk
it would be:

Code: Select all

/usr/local/vitasdk/vitasdk/bin
It's done. vitasdk is now built and installed in

Code: Select all

/usr/local/vitasdk/vitasdk/bin
.
Advertising
Locked

Return to “Tutorials”