Re: Building SDL Hyperion on macOS
| Newsgroups | gmane.comp.emulators.hercules390.general |
|---|---|
| Message-ID | <[email protected]> |
Hello Blake, The commands I use when I re-build SDL Hyperion from scratch on either a 10.13 or 10.14 system need to first build the "External Packages". This goes as follows : cd ~ rm -rf ~/Downloads/gists git clone https://github.com/SDL-Hercules-390/gists ~/Downloads/gists rm -rf ~/SDL-extpkgs mkdir ~/SDL-extpkgs cd ~/SDL-extpkgs cp ~/Downloads/gists/extpkgs* . chmod +x extpkgs.sh ls -al extpkgs* ./extpkgs.sh clone c d s t Only then can I (re-)build SDL Hercules itself : cd ~ rm -rf ~/SDL-hyperion git clone https://github.com/SDL-Hercules-390/hyperion ~/SDL-hyperion cd ~/SDL-hyperion/ ./autogen.sh ./configure CFLAGS="-Wno-format -Wno-unused-local-typedef -Wno-parentheses" --enable-extpkgs=../SDL-extpkgs --prefix=/usr/local/fish --enable-multi-cpu=16 sudo make clean make make check sudo make install cd ~ Good luck ! Cheers, Peter