From 7b3fa2c4235f683a9186193f1b44e03d74087552 Mon Sep 17 00:00:00 2001 From: dimgigov Date: Fri, 5 Jun 2026 20:12:51 +0300 Subject: [PATCH] =?UTF-8?q?Remove=20buxs/=20=E2=80=94=20no=20Windows=20sup?= =?UTF-8?q?port,=20we=20build=20on=20Linux=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buxs/README.md | 20 -------------------- buxs/build.bat | 4 ---- buxs/build.sh | 4 ---- buxs/bux.toml | 7 ------- 4 files changed, 35 deletions(-) delete mode 100644 buxs/README.md delete mode 100644 buxs/build.bat delete mode 100755 buxs/build.sh delete mode 100644 buxs/bux.toml diff --git a/buxs/README.md b/buxs/README.md deleted file mode 100644 index a466450..0000000 --- a/buxs/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# BUXS — Windows-Compatible Project Root - -This directory serves as an alternative project root for Windows environments -where the name `bux` may conflict with system paths or tooling. - -## Usage - -From this directory, you can build and run the Bux compiler using the -provided wrapper scripts. - -## Structure - -The actual project source lives in the parent directory (`../`): - -- `../compiler/bootstrap/` — Nim bootstrap compiler -- `../compiler/selfhost/` — Self-hosting compiler (Bux) -- `../library/std/` — Standard library modules -- `../library/runtime/` — C runtime files -- `../tests/` — Integration tests -- `../docs/` — Documentation diff --git a/buxs/build.bat b/buxs/build.bat deleted file mode 100644 index 32155d4..0000000 --- a/buxs/build.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Windows wrapper to build Bux from buxs/ root -cd .. -make build diff --git a/buxs/build.sh b/buxs/build.sh deleted file mode 100755 index c2ee67b..0000000 --- a/buxs/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -# Wrapper script to build Bux from buxs/ root -cd .. -make build diff --git a/buxs/bux.toml b/buxs/bux.toml deleted file mode 100644 index 8eee9db..0000000 --- a/buxs/bux.toml +++ /dev/null @@ -1,7 +0,0 @@ -[Package] -Name = "buxc" -Version = "0.1.0" -Type = "bin" - -[Build] -Output = "Bin"