We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33db506 commit 0dbc091Copy full SHA for 0dbc091
README.md
@@ -9,3 +9,9 @@ The `runtime.c` file needs to be compiled by doing the following
9
This will produce a file named `runtime.o`. The -g flag is to tell the
10
compiler to produce debug information that you may need to use
11
the gdb (or lldb) debugger.
12
+
13
+On a Mac with an M1 (ARM) processor, use the `-arch x86_64` flag to
14
+compile the runtime:
15
+```
16
+ gcc -c -g -std=c99 -arch x86_64 runtime.c
17
0 commit comments