We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed94b0 commit 0ec693cCopy full SHA for 0ec693c
booting.html
@@ -31,6 +31,21 @@ <h2>Booting CM3 5.1 with PM3 or SRC M3</h2>
31
<tt>cm3/m3-sys/m3middle/src/Target.m3</tt><br>
32
<tt>cm3/m3-sys/cm3/src/config/${TARGET}</tt><br>
33
</li>
34
+
35
+ <li>
36
+ Create the file compat.quake at the root of the source tree
37
+ with this content:<pre><tt>% Determine whether we are using the PM3 release of Modula-3.
38
+if not defined("PM3")
39
+ % The procedure "build_standalone" exists only in SRC Modula-3.
40
+ if not defined("build_standalone")
41
+ PM3 = "T"
42
+ end
43
+end
44
+if defined("PM3")
45
+ proc build_standalone() is
46
+ option("standalone", "T")
47
48
+end</pre></li>
49
<li>
50
Compile and link the CM3 compiler using the libraries of the
51
PM3 system. You can do this with the the script
0 commit comments