Page 1 of 2

Building Supermodel on Ubuntu Linux

PostPosted: Mon Jan 02, 2012 11:08 am
by nikdd
Steps for building Supermodel on Ubuntu Linux

The following are instructions on how to build on Ubuntu the latest development version (or a particular release) of Supermodel from the SVN repository.

These steps have been tested on Ubuntu 10.04 32-Bit & 64-Bit and Ubuntu 11.10 32-Bit. Apart from step 1 (which simply ensures that Ubuntu has the correct packages installed) the steps should be pretty much the same for other versions of Ubuntu and for other distributions of Linux.

Steps

1. Ensure you have the necessary tools installed (this only needs to be done once):

Code: Select all
sudo apt-get install subversion build-essential libsdl1.2-dev libglew1.5-dev zlib1g-dev


2. Download the source from SVN:

Code: Select all
mkdir Supermodel
cd Supermodel


a) To download the latest development version:

Code: Select all
svn co https://model3emu.svn.sourceforge.net/svnroot/model3emu/trunk
cd trunk


b) To download a particular SVN revision of the code:

Code: Select all
svn co -r REVISION https://model3emu.svn.sourceforge.net/svnroot/model3emu/trunk
cd trunk


where REVISION is the revision number, eg 264

c) To download a particular release:

Code: Select all
svn co https://model3emu.svn.sourceforge.net/svnroot/model3emu/tags/VERSION
cd VERSION


where VERSION is the release number, eg 0.1.2a or 0.2a.

NOTE: version 0.1.2a does not build under Ubuntu 11.10.

d) Alternatively, download the latest release's source in a tar file from http://www.supermodel3.com/Download.html.

3. Compile the source:

Code: Select all
ln -s Makefiles/Makefile.SDL.UNIX.GCC Makefile
make


4. Run the emulator:

Code: Select all
cd bin
mkdir Config NVRAM Saves
cp ../Config/Supermodel.ini Config
./Supermodel PATH_TO_ROMS/GAME.zip


where PATH_TO_ROMS is the path to where all your ROMs are and GAME is the name of the game's ROM.

NOTE: for version 0.1.2a, the location of the outputted executable is different and there is no Supermodel.ini to copy.

See http://www.supermodel3.com/Usage.html for more help with running Supermodel.

Enjoy!

Re: Building Supermodel on Ubuntu Linux

PostPosted: Mon Apr 04, 2016 2:40 pm
by sergio-br2
Are there any reason to not use Supermodel from the PPA? There are packages there since 2015 May...

Re: Building Supermodel on Ubuntu Linux

PostPosted: Sun Dec 23, 2018 9:03 am
by addamm
>>> Building Supermodel3 on (Arch)Linux <<<

Code: Select all
# pacman -S gcc make sdl subversion
$ mkdir srcbuilds
$ cd srcbuilds/
$ svn checkout https://svn.code.sf.net/p/model3emu/code/trunk model3emu-code
$ cd model3emu-code/
$ ln -s Makefiles/Makefile.UNIX Makefile
$ make -j(NumberOfYourCPUs)
$ cp -r Config/ bin/
$ cd bin/
$ mkdir {NVRAM,Saves,roms}
$ ./supermodel roms/rom.zip


Smile! ;) 8-)

Re: Building Supermodel on Ubuntu Linux

PostPosted: Mon Dec 24, 2018 10:12 am
by Bart
Thanks for posting that! I’ll soon fix the Makefile to make those folders automatically.

Re: Building Supermodel on Ubuntu Linux

PostPosted: Sun Jun 14, 2020 5:18 am
by zuppa_di_pesce
addamm wrote:>>> Building Supermodel3 on (Arch)Linux <<<

Code: Select all
# pacman -S gcc make sdl subversion
$ mkdir srcbuilds
$ cd srcbuilds/
$ svn checkout https://svn.code.sf.net/p/model3emu/code/trunk model3emu-code
$ cd model3emu-code/
$ ln -s Makefiles/Makefile.UNIX Makefile
$ make -j(NumberOfYourCPUs)
$ cp -r Config/ bin/
$ cd bin/
$ mkdir {NVRAM,Saves,roms}
$ ./supermodel roms/rom.zip


Smile! ;) 8-)

glu is needed:
Code: Select all
pacman -S glu gcc make sdl subversion

Re: Building Supermodel on Ubuntu Linux

PostPosted: Sat Jul 25, 2020 11:46 am
by TheOldDragon
I just built from source [today] on Ubuntu 20.04 LTS, and Scud Race Plus works perfectly in "Single" mode.

Specs:
Ubuntu 20.04 LTS - x64, fully updated
Ryzen 5 3600 CPU, Radeon 5500 XT "Navi" GPU, open source AMD drivers

Install dependencies:
Code: Select all
sudo apt install subversion
sudo apt install libsdl2-dev
sudo apt install libsdl2-net-dev

Build it:
Code: Select all
svn checkout https://svn.code.sf.net/p/model3emu/code/trunk model3emu-code
cd model3emu-code/
ln -s Makefiles/Makefile.UNIX Makefile
make

Prepare:
create directories, copy files, as above posts..

Run it:
Code: Select all
./supermodel ./Roms/<rom.zip> -res=1920,1080 -show-fps -quad-rendering -wide-screen

Re: Building Supermodel on Ubuntu Linux

PostPosted: Sat Jul 25, 2020 3:03 pm
by Bart
Awesome! Thanks for doing this.

Re: Building Supermodel (w/ network card) on Ubuntu Linux

PostPosted: Sun Aug 09, 2020 3:40 am
by zuppa_di_pesce
If anyone needs networking in Linux, just have a look at this post (TheOldDragon).

Re: Building Supermodel on Ubuntu Linux

PostPosted: Mon Nov 08, 2021 10:56 am
by EggHead
TheOldDragon wrote:Install dependencies:
Code: Select all
sudo apt install subversion
sudo apt install libsdl2-dev
sudo apt install libsdl2-net-dev

Build it:
Code: Select all
svn checkout https://svn.code.sf.net/p/model3emu/code/trunk model3emu-code
cd model3emu-code/
ln -s Makefiles/Makefile.UNIX Makefile
make

Prepare:
create directories, copy files, as above posts..


This worked like a charm, thank you.

Re: Building Supermodel on Ubuntu Linux

PostPosted: Thu Feb 24, 2022 1:12 pm
by isaach77
Step 3 isn't working from what I can tell. Installing trunk from the URL isn't cannot connect. I following the post above for independence's then following the steps from the first post for installing supermodel. Any Idea or is this outdated?

nikdd wrote:Steps for building Supermodel on Ubuntu Linux

The following are instructions on how to build on Ubuntu the latest development version (or a particular release) of Supermodel from the SVN repository.

These steps have been tested on Ubuntu 10.04 32-Bit & 64-Bit and Ubuntu 11.10 32-Bit. Apart from step 1 (which simply ensures that Ubuntu has the correct packages installed) the steps should be pretty much the same for other versions of Ubuntu and for other distributions of Linux.

Steps

1. Ensure you have the necessary tools installed (this only needs to be done once):

Code: Select all
sudo apt-get install subversion build-essential libsdl1.2-dev libglew1.5-dev zlib1g-dev


2. Download the source from SVN:

Code: Select all
mkdir Supermodel
cd Supermodel


a) To download the latest development version:

Code: Select all
svn co https://model3emu.svn.sourceforge.net/svnroot/model3emu/trunk
cd trunk


b) To download a particular SVN revision of the code:

Code: Select all
svn co -r REVISION https://model3emu.svn.sourceforge.net/svnroot/model3emu/trunk
cd trunk


where REVISION is the revision number, eg 264

c) To download a particular release:

Code: Select all
svn co https://model3emu.svn.sourceforge.net/svnroot/model3emu/tags/VERSION
cd VERSION


where VERSION is the release number, eg 0.1.2a or 0.2a.

NOTE: version 0.1.2a does not build under Ubuntu 11.10.

d) Alternatively, download the latest release's source in a tar file from http://www.supermodel3.com/Download.html.

3. Compile the source:

Code: Select all
ln -s Makefiles/Makefile.SDL.UNIX.GCC Makefile
make


4. Run the emulator:

Code: Select all
cd bin
mkdir Config NVRAM Saves
cp ../Config/Supermodel.ini Config
./Supermodel PATH_TO_ROMS/GAME.zip


where PATH_TO_ROMS is the path to where all your ROMs are and GAME is the name of the game's ROM.

NOTE: for version 0.1.2a, the location of the outputted executable is different and there is no Supermodel.ini to copy.

See http://www.supermodel3.com/Usage.html for more help with running Supermodel.

Enjoy!