The Stella project always welcomes new developers, either on a full-time basis or just to fix your favorite bug. Feel free to email Stephen Anthony if you wish to contribute in any way to the Stella project.

The first major hurdle for new developers is setting up a build environment, checking out the code, and in general actually compiling the project for the first time. The following is a description of how to do this for the three major platforms.

Linux/UNIX

  1. Getting the required tools:

    Stella needs g++-7 or clang++-5 (with up-to-date C++17 support), make and SDL2 development libraries installed. ZLib and PNG libraries are optional; Stella will use built-in versions if none are installed system-wide. These packages are likely available through your distribution repository. Consult your specific distribution for an explanation of installing new packages.

    Other packages may be needed depending on the distribution you use. The best thing to do is try the compile, note any missing packages, and then install them through your distribution repository.

  2. Downloading the source code:

    The source for the latest release can always be found under "Stable Releases" on the main webpage. However, you'd be better off working with the most recent code, located in the GitHub repository. The following command will checkout this code:

    git clone https://github.com/stella-emu/stella.git

    This will checkout from the master branch for local modifications. Please see below for instructions on how to contribute changes back to Stella.

    Note: You may be more familiar with graphical Git clients; these will work fine as well.


  3. Compiling the source code:

    1. Generic build — When testing changes or creating personal builds, it's best to use the generic configure/make cycle:

      cd 'location of stella source code' ./configure (--help for list of options) make make install (if you want to install locally)
    2. Debian-based distributions:

      cd 'location of stella source code' dpkg-buildpackage
    3. RPM-based distributions:

      cd 'location of stella source code'/src/unix rpmbuild -ba stella.spec

  4. Contributing

    If you'd like to contribute to Stella, create a fork of the repository on github and make your changes there. After you are done, place a pull request against the Stella repository. This process is described in detail in the github docs.

    If you do not want to create a github account, you can also create a diff of your changes using

    git diff
    and send it to the email address above. Please check out the git documentation on how to select particular commits for diffing.

    Before you start modifying code, it's best to update your local copy of the source code (so that you can see changes that others have made). To do this, use the following command:

    git pull


Apple macOS

  1. Getting the required tools:

    Stella needs macOS 12 and associated Xcode version for compilation. You will also need the SDL2 development libraries, located at libsdl.org. You will need to download SDL2-2.0.14.dmg (or newer, if available).

  2. Downloading the source code:

    The source for the latest release can always be found under "Stable Releases" on the main webpage. However, you'd be better off working with the most recent code, located in the GitHub repository. The following command will checkout this code:

    git clone https://github.com/stella-emu/stella.git

    This will checkout from the master branch for local modifications. Please see below for instructions on how to contribute changes back to Stella.

    Note: You may be more familiar with graphical Git clients; these will work fine as well.


  3. Compiling the source code:

    1. The Xcode project is located at src/macos/stella.xcodeproj and is for ARM M1 and 64-bit Intel machines.
    2. Place the SDL.framework bundle (located in the SDL2 dmg file you downloaded earlier) into the /Library/Frameworks directory.

    3. Open the project file using Xcode 8.

    4. Build the project by pressing Cmd-b, and run by pressing Cmd-r.

    5. Optional: creating a DMG for release:

      cd 'location of stella source code'/src/macos ./Create_build.sh 'version #'

      This will create a DMG installation archive on your desktop.

      The Stella.app bundle can be copied to your Applications folder, or wherever you like on your system.

  4. Contributing

    If you'd like to contribute to Stella, create a fork of the repository on github and make your changes there. After you are done, place a pull request against the Stella repository. This process is described in detail in the github docs.

    If you do not want to create a github account, you can also create a diff of your changes using

    git diff
    and send it to the email address above. Please check out the git documentation on how to select particular commits for diffing.

    Before you start modifying code, it's best to update your local copy of the source code (so that you can see changes that others have made). To do this, use the following command:

    git pull


Windows 7/8/10/11

  1. Getting the required tools:

    Stella needs Visual Studio C++ 2022. You will also need the SDL2 development libraries, located at GitHub. The version you want will be named SDL2-devel-2.2.x-VC.zip (where 'x' is dependent on the version); download the latest version.

    You will also need a Git client; the following assumes you are using TortoiseGit.

  2. Downloading the source code:

    The source for the latest release can always be found under "Stable Releases" on the main webpage. However, you'd be better off working with the most recent code, located in the GitHub repository. To checkout this code, you will need to install TortoiseGit, which you downloaded above.

    Once TortoiseGit is installed, you should right-click somewhere in Windows Explorer where you wish to download the files, right-click and select Git Clone... This will produce a window as follows:

    The URL of repository must be the same, but the Checkout directory will be specific to your system.

    This will checkout from the master branch for local modifications. Please see below for instructions on how to contribute changes back to Stella.

  3. Compiling the source code:

    Before compiling the code for the first time, you must set up your environment such that Visual Studio can find the SDL development files:

    1. Open the folder REPO_DIR\src\os\windows, similar to the following:

    2. Unzip the SDL2-devel-2.2.x-VC.zip file you downloaded above into this folder. This will create a folder named SDL2-2.2.x (where 'x' depends on the version you downloaded), which should contain, among other things, folders named 'include' and 'lib'.

    3. Rename this folder to 'SDL'. In the end, you must have a folder named SDL in src\os\windows, and the folder must contain 'include' and 'lib' folders as well.

    4. Open the Visual Studio project file (Stella.vcxproj) and build the project; it should run to completion, perhaps with some warnings.

    5. If you try to run at this point, it will probably complain that it can't find SDL2.dll. Manually copy this file from the SDL folder to the following locations:

      	For the 32-bit version: Win32\Release and Win32\Debug subfolders
      	For the 64-bit version: x64\Release and x64\Debug subfolders
            
    6. You may also get an error that the libraries msvcp140.dll and/or msvcr140.dll are not available. If so, you will need to download them from Visual C++ Redistributable Packages for Visual Studio 2017
  4. Contributing

    If you'd like to contribute to Stella, create a fork of the repository on github and make your changes there. After you are done, place a pull request against the stella repository. This process is described in detail in the github docs.

    If you do not want to create a github account, you can also create a diff of your changes and send it to the email address above. To do this, right-click on the local repository directory and select TortoiseGit -> Create Patch Serial...

    Before you start modifying code, it's best to update your local copy of the source code (so that you can see changes that others have made). To do this, right-click on the local repository directory and select TortoiseGit -> Pull...

 
2600-daptor

Stelladaptor

Bliss-Box