buyukakyuz/old_rustmm: Rust without the borrow checker
github.com·1d·
Preview
Report Post

Rust–: Rust without the borrow checker

A modified Rust compiler with the borrow checker disabled. This allows code that would normally violate Rust’s borrowing rules to compile and run successfully.

How to Build

Prerequisites

  • Rust toolchain
  • Python 3
  • 10+ GB of disk space

Build Steps

Clone this repo and:

# Configure the build
./configure

# Build stage1 compiler
./x build --stage 1

For more detailed build options and configuration, see the official Rust build guide

Use It

# Find your build directory
ls build/*/stage1/bin/rustc

# Compile code with rust--
# Replace <YOUR-TRIPLE> with your triple from above (e.g., x86_64-unknown-linux-gnu, aarch64-apple-darwin)
./buil...

Similar Posts

Loading similar posts...