Messaged compilation: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Dcunningham (talk | contribs) Created page with "The Enswitch messaged program is held in the git repository. Check out the branch for the Enswitch version you're working on, for example: <code>git checkout 4.2</code>. The..." |
Dcunningham (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
=== Installing go === |
|||
Copy a download link for the latest .linux-amd64.tar.gz from: https://go.dev/dl/ |
|||
Download it on your development/build machine: <code>wget <download url></code> |
|||
Install into /usr/local: <code>tar -C /usr/local -xvf <file downloaded></code> |
|||
=== Compiling messaged === |
|||
The Enswitch messaged program is held in the git repository. |
The Enswitch messaged program is held in the git repository. |
||
Revision as of 01:38, 24 May 2023
Installing go
Copy a download link for the latest .linux-amd64.tar.gz from: https://go.dev/dl/
Download it on your development/build machine: wget <download url>
Install into /usr/local: tar -C /usr/local -xvf <file downloaded>
Compiling messaged
The Enswitch messaged program is held in the git repository.
Check out the branch for the Enswitch version you're working on, for example: git checkout 4.2.
Then from the root directory of the git clone you can run make.
If subsequent runs of make don't do anything you can run go build ./cmd/messaged instead.