forked from ELLDER054/gizmolang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.html
40 lines (37 loc) · 1.48 KB
/
install.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Install Gizmo</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img id="gizmoLogo" height="170px" width="550px" src="https://user-images.githubusercontent.com/76635411/117458638-7f045b80-af18-11eb-8bbe-33fb328ea454.png">
<div id="nav-bar">
<a class="tab" href="index.html">The Gizmo Programming Language</a>
<a class="tab" href="docs.html">Documentation</a>
<a class="tab" href="install.html">Install</a>
<a class="tab" href="editor.html">Playground</a>
<a class="tab" href="https://github.com/ellder054/gizmo-lang/">Repository</a>
</div>
<br>
<br>
<pre>
<h2>Building Gizmo From Source</h2>
Requirements:
<ol>
<li>A terminal or shell (An Interface For Users To Interact With The Basic Parts of a Computer Core)</li><li>clang (The C Compiler)</li><li>llvm (llc)</li><li>cmake (The Program To Build or Make C Programs)</li><li>git (The Tool To Help You Organize Different Versions of Your Program)</li><li>gcc (Another C Compiler)</li>
</ol>
Run the following four commands in your shell or terminal to build Gizmo:
<code>
1. git clone <span style="color: blue;">https://github.com/ellder054/gizmo-lang.git</span>
2. <span style="font-weight: bold;">cd</span> gizmo-lang
3. <span style="font-weight: bold;">mkdir</span> build
4. <span style="font-weight: bold;">cd</span> build
3. cmake ..
4. make
</code>
</pre>
</body>
</html>