diff options
author | Wim <wim@42.be> | 2022-04-24 16:50:51 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2022-04-24 16:51:16 +0200 |
commit | c3573f1a461a6dcc173ffc4895728561b3db98c6 (patch) | |
tree | fbf0b2c0a0e9a3190cce2682616c1c078afb971a | |
parent | ee932a9f8e37716e8e401389a083c2aeecbf4efa (diff) | |
download | matterbridge-msglm-c3573f1a461a6dcc173ffc4895728561b3db98c6.tar.gz matterbridge-msglm-c3573f1a461a6dcc173ffc4895728561b3db98c6.tar.bz2 matterbridge-msglm-c3573f1a461a6dcc173ffc4895728561b3db98c6.zip |
Add CGO_ENABLED info to README
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -191,7 +191,9 @@ If you really want to build from source, follow these instructions: Go 1.17+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed. Building the binary with **all** the bridges enabled needs about 3GB RAM to compile. -You can reduce this memory requirement to 0,5GB RAM by adding the `nomsteams` tag if you don't need/use the Microsoft Teams bridge +You can reduce this memory requirement to 0,5GB RAM by adding the `nomsteams` tag if you don't need/use the Microsoft Teams bridge. + +Matterbridge can be build without gcc/c-compiler: If you're running on windows first run `set CGO_ENABLED=0` on other platforms you prepend `CGO_ENABLED=0` to the `go build` command. (eg `CGO_ENABLED=0 go install github.com/42wim/matterbridge`) To install the latest stable run: |