You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Before running the build scripts, ensure that you have cleaned up the visualfsharp repo by running this git command:
10
+
11
+
git clean -xfd
12
+
13
+
This will remove any files that are not under version control. This is necessary only if you have already attempted to build the solution or have made other changes that might prevent it from building.
14
+
15
+
##Installing Dependencies and Building
16
+
3
17
Follow the instructions below to build and develop the F# Compiler, Core Library and tools on Windows, macOS and Linux.
4
18
5
19
-[Developing the F# Compiler (Windows)](#developing-the-f-compiler-windows)
@@ -20,10 +34,6 @@ Install
20
34
21
35
2. The command prompt must have Administrator rights (`Run as Administrator`).
22
36
23
-
Before running the build scripts, ensure that you have cleaned up the visualfsharp repo by running this git command:
24
-
25
-
git clean -xfd
26
-
27
37
On Windows you can build the F# compiler for .NET Framework as follows:
28
38
29
39
build.cmd
@@ -195,7 +205,11 @@ For **Release**:
195
205
196
206
vsintegration\update-vsintegration.cmd release
197
207
198
-
#Notes
208
+
##Debugging the F# Compiler
209
+
210
+
See the "Debugging The Compiler" section of this[article](https://medium.com/@willie.tetlow/f-mentorship-week-1-36f51d3812d4)