Skip to content

Latest commit

 

History

History
77 lines (50 loc) · 1.2 KB

INSTALL.md

File metadata and controls

77 lines (50 loc) · 1.2 KB

Installation

Ubuntu 16.04

make cd bin ./linapple

Prerequisites

Ubuntu

sudo apt-get install git libzip-dev libsdl1.2-dev libsdl-image1.2-dev libcurl4-openssl-dev zlib1g-dev

Fedora

sudo dnf install git SDL-devel SDL_image-devel libcurl-devel libzip-devel

Clone

git clone [email protected]:linappleii/linapple.git 

Linapple - crossplatfom emulator of Apple][ (Apple2, Apple 2) series computer for Linux or other OSes with SDL support.

Compile

cd linapple
make

Global Install

make install

Run

bin/linapple

Or if you did a global install.

linapple

Configure

A directory name linapple can be found in your home directory. Edit the linapple.conf file.

Global Install

make install

Debugging and Profiling

By default, the make command will compile an optimized version of linapple.

It is possible to compile a version with debugging symbols. To do so, you must set the DEBUG environment variable:

DEBUG=1 make

If you would like to also include extra code that writes profile information suitable for the analysis program gprof:

PROFILING=1 make