Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add compilation notes #94

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions WIP_compilation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Basilisk II Compilation

## On macOS

You need `cvs`, `autoconf` and `automake`. If you don't have them installed yet, then you can install them e.g. via [Homebrew](https://brew.sh/):

```sh
brew install cvs
brew install autoconf
brew install automake
```

Now you are ready to compile:

```sh
cd [path_to_Basilisk_II_folder]/src/Unix
./autogen.sh
make
```

## On Ubuntu

You can compile with the commands:

```sh
cd [path_to_Basilisk_II_folder]/src/Unix
./autogen.sh
make
```

## Note

Many warnings are generated which I am investigating.

I have tested Basilisk II 1.0 on macOS 10.14.3 and 10.13.6, as well as Ubuntu 18.04.1 LTS (also on Windows), emulating Mac OS 9.0.4 and running a standalone application generated by HyperCard 2.4.1.

2019-03-04 / Reto Kromer