JaCzekanski / Avocado

🥑 PlayStation 1 emulator
GNU General Public License v2.0
538 stars 31 forks source link

Building for macOS and pmake5 - problem! #50

Closed spotanjo3 closed 5 years ago

spotanjo3 commented 5 years ago

I am trying to compile it for macOS but pmake5 is not found in terminal. I downloaded pmake5 but I dont know how to installed it through terminal at all.

Help ? I have experienced building emulators for macOS. This is totally different because of pmake5. Please help ?

JaCzekanski commented 5 years ago

README assumed that you have premake5 installed in one of the directories contained in $PATH.

Simply download and unpack it:

wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-macosx.tar.gz
tar xzf premake-5.0.0-alpha13-macosx.tar.gz 
./premake5 gmake

You can move premake5 binary to PATH:

mv premake5 /usr/local/bin

and then you'll be able to use it directly from terminal:

premake5 gmake
spotanjo3 commented 5 years ago

That's what I am thinking but the problem is that I do not know where is /usr/local/bin.

On Fri, Mar 15, 2019 at 8:42 AM Jakub Czekański notifications@github.com wrote:

Simply download and unpack it:

wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha13/premake-5.0.0-alpha13-macosx.tar.gz tar xzf premake-5.0.0-alpha13-macosx.tar.gz ./premake5 gmake

You can move premake5 binary to PATH:

mv premake5 /usr/local/bin

and then you'll be able to use it directly from terminal:

premake5 gmake

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/JaCzekanski/Avocado/issues/50#issuecomment-473271136, or mute the thread https://github.com/notifications/unsubscribe-auth/APt98pn4QZuIBKrLtBcEZpMtI2K5bYQHks5vW5VDgaJpZM4b2YEv .

-- In Memory of Spot (FOREVER)

JaCzekanski commented 5 years ago

I don't understand what problems are you having. Simply execute the commands that I provided using Terminal.app

usr and other system folders aren't visible through Finder unless you change Finder to show hidden files CMD + SHIFT + .

spotanjo3 commented 5 years ago

So sorry. I found it now. And I type this:

pmake5 gmake and everything is working fine. Appreciated that. avocado.app doesn't have GUI at all. I will have to run it through Terminal I think. Your instruction isn't there about that.

Now, where do I put bios ? I went to Finder and Go to Folder and find ~/Library/ and find Application supports but avocado is not in there with most emulators.

JaCzekanski commented 5 years ago

Right now Avocado does not store any data in User Profile. Use data/bios in project directory.

spotanjo3 commented 5 years ago

Thank you.