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 778164c commit 1de1f87Copy full SHA for 1de1f87
BUILDING.md
@@ -85,11 +85,17 @@ Try running TinyGo:
85
86
./build/tinygo help
87
88
-Also, make sure the `tinygo` binary really is statically linked. Check this
89
-using `ldd` (not to be confused with `lld`):
+Also, make sure the `tinygo` binary really is statically linked. The command to check for
+dynamic dependencies differs depending on your operating system.
90
+
91
+On Linux, use `ldd` (not to be confused with `lld`):
92
93
ldd ./build/tinygo
94
95
+On macOS, use otool -L:
96
97
+ otool -L ./build/tinygo
98
99
The result should not contain libclang or libLLVM.
100
101
## Make a release tarball
0 commit comments