Skip to content

Commit 90de804

Browse files
att
1 parent f3790a9 commit 90de804

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

docs/install_and_build/build_instructions.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,6 @@ Darwin is a tool that helps us build the project. Think of it like a smart assis
1313
```bash
1414
curl -L https://github.com/OUIsolutions/Darwin/releases/download/0.3.0/darwin.out -o darwin.out && sudo chmod +x darwin.out && sudo mv darwin.out /usr/bin/darwin
1515
```
16-
## 🎯 Step 2: Choose Your Build Method
17-
18-
You have two main options to build VibeScript:
19-
20-
### Option A: Quick Build (Easiest - Recommended for Beginners)
21-
22-
This uses a pre-made file called [amalgamation.c](https://github.com/OUIsolutions/VibeScript/releases/download/0.10.0/amalgamation.c) - think of it as a recipe that has all ingredients already mixed.
23-
24-
download the [amalgamation.c](https://github.com/OUIsolutions/VibeScript/releases/download/0.10.0/amalgamation.c) with:
25-
26-
```bash
27-
curl -L https://github.com/OUIsolutions/VibeScript/releases/download/0.10.0/amalgamation.c -o amalgamation.c
28-
```
29-
compile the amalgamation with:
30-
```bash
31-
gcc amalgamation.c -o vibescript
32-
```
33-
34-
**What this does:** Creates a program called `vibescript` that you can run on your computer.
35-
36-
### Option B: Advanced Builds (For Developers)
3716

3817
If you want to create builds for different operating systems or customize the build process:
3918

docs/install_and_build/install.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ You can also compile VibeScript from source. You will need to have `gcc`, or `cl
1818
if you are on linux or macOS, you can run the following commands:
1919

2020
```bash
21+
curl -L https://github.com/OUIsolutions/VibeScript/releases/download/0.35.0/amalgamation.c -o vibescript.c && gcc vibescript.c -o vibescript.out && sudo mv vibescript.out /usr/local/bin/vibescript
2122
```
23+

0 commit comments

Comments
 (0)