This repo is not used anymore. Development of Orca was moved here: https://github.com/orca-app/orca https://orca-app.dev/
Go to file
Martin Fouilleul b7e3e83f3e Block for events in main thread, and avoid burning the planet 2023-06-26 20:00:29 +02:00
cstdlib zsh bus error garbage 2023-06-25 20:33:42 +02:00
ext/wasm3 puling logging functionality from milepost into orca 2023-04-18 18:06:47 +02:00
milepost@21aa1bef68 Block for events in main thread, and avoid burning the planet 2023-06-26 20:00:29 +02:00
resources First draft of in-app debug console 2023-04-20 15:47:18 +02:00
samples/pong - Changed mkapp.py flags to embed files and directories. 2023-06-26 12:24:22 +02:00
scripts - Changed mkapp.py flags to embed files and directories. 2023-06-26 12:24:22 +02:00
sdk Load images in pong example 2023-06-25 20:36:02 +02:00
src Block for events in main thread, and avoid burning the planet 2023-06-26 20:00:29 +02:00
test/bulkmem - Investigating clang's handling of memory builtins and bulk memory code generation in test/bulkmem 2023-06-25 20:37:22 +02:00
.gitignore Adding printing functions and asserts 2023-04-18 10:46:02 +02:00
.gitmodules silence clang warning on const qualifiers 2023-06-20 10:26:28 +02:00
Readme.md update readme and angle install notes 2023-04-26 15:59:03 +02:00
build.bat [win32] runtime compiles, and boots (without loading wasm module) 2023-06-17 20:10:11 +02:00
build.sh [build] check if wasm3/milepost dependencies are present and build them otherwise 2023-06-26 11:13:09 +02:00

Readme.md

Install

Clone the repo with the --recurse-submodules option.

Get and build ANGLE (see milepost/ext/angle_install_notes.md), and put libEGL.dylib and libGLESv2.dylib in milepost/bin.

Cd to orca and build milepost (the platform layer), wasm3 (the wasm runtime), then orca:

cd Orca
./build.sh milepost
./build.sh wasm3
./build.sh orca

Build the sample orca app:

pushd samples/pong ; ./build.sh ; popd

This creates a Pong.app bundle in samples/pong that you can double click to run.

You can also build milepost example apps like so:

cd milepost
pushd examples/canvas ; ./build.sh ; popd
pushd examples/perf_text ; ./build.sh ; popd
pushd examples/tiger ; ./build.sh ; popd