gs2compiler

Crates.iogs2compiler
lib.rsgs2compiler
version0.1.0
sourcesrc
created_at2024-08-14 06:01:06.226637
updated_at2024-08-14 06:01:06.226637
descriptionCompile GS2 source code to bytecode
homepage
repositoryhttps://github.com/xtjoeytx/gs2-parser
max_upload_size
id1336902
size8,450,721
Christopher Cerne (cernec1999)

documentation

README

gs2-parser

This is a compiler for the Graal Script 2 (GS2) language.

Prerequisites

Before building, clone the repository and recursively clone the submodules:

git clone git@github.com:xtjoeytx/gs2-parser.git --recursive

Building

You can build the project using CMake:

mkdir build
cd build
cmake ..
make -j $(nproc)

Building (Wasm)

First, ensure you have Emscripten installed. Then, you can build the project using CMake:

mkdir build
cd build
emcmake cmake ..
make -j $(nproc)

The resulting gs2test.js file can be imported into a webpage.

Running

The non-wasm build can be run using the following command:

$ ./gs2test ../scripts/asd2.txt
Argc: 2
Args: ../scripts/asd2.txt
Compiling file ../scripts/asd2.txt
Compiled in 0.001322 seconds
 -> saved to ../scripts/asd2.gs2bc
Total length of bytecode w/ headers:   160
Commit count: 0

cargo fmt