- Joined
- Jun 10, 2015
- Messages
- 3,837
- Reaction score
- 5,181
- Trophies
- 0
- Age
- 42
- Location
- Kongo Jungle
- XP
- 5,129
- Country

Hi all
I'm trying to set up devkitproarm so I can build the Homebrew Launcher from source. According to this page I need to install zlib first (and building HBL indeed fails due to missing zlib.h). I have followed the instructions and downloaded zlib-1.2.8.tar.gz and created the Makefile as described. The Makefile and zlib-1.2.8.tar.gz are in the same folder. When I try to make zlib I get the following output in the terminal:
I've googled the error and it seems to be a generic error indicating that gcc failed, so I have no idea what's going wrong. Any help would be appreciated!
Edit
Ok, sorted. The bit above the make error was the obvious clue - the tar command in the Makefile was sending invalid parameters to the OS X version of tar, so it was failing and providing guidance on the correct arguments. I changed it from tar -xaf to tar -xf in the Makefile and it's working now
I'm trying to set up devkitproarm so I can build the Homebrew Launcher from source. According to this page I need to install zlib first (and building HBL indeed fails due to missing zlib.h). I have followed the instructions and downloaded zlib-1.2.8.tar.gz and created the Makefile as described. The Makefile and zlib-1.2.8.tar.gz are in the same folder. When I try to make zlib I get the following output in the terminal:
Code:
Usage:
List: tar -tf <archive-filename>
Extract: tar -xf <archive-filename>
Create: tar -cf <archive-filename> [filenames...]
Help: tar --help
make: *** [all] Error 1
I've googled the error and it seems to be a generic error indicating that gcc failed, so I have no idea what's going wrong. Any help would be appreciated!
Edit
Ok, sorted. The bit above the make error was the obvious clue - the tar command in the Makefile was sending invalid parameters to the OS X version of tar, so it was failing and providing guidance on the correct arguments. I changed it from tar -xaf to tar -xf in the Makefile and it's working now






