Skip to content

TUM-DSE/aarch64-air-lifter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AArch64 to AIR lifter

Getting started

To get started, install Rust (https://rustup.sh) and the following dependencies:

cargo install just cargo-sort cargo-nextest

All useful commands can be found in the top-level Justfile (Similar to a Makefile).

Run the following commands to get started:

# format the code
just fmt
# run tests
just test
# run lints
just check

Pre-commit

Create a .git/hooks/pre-commit to run checks automatically every time you commit:

cat > .git/hooks/pre-commit << EOF
#!/usr/bin/env bash

set -euo pipefail

just lint
just test
EOF
chmod +x .git/hooks/pre-commit

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published