Skip to content

Commit 6bacebf

Browse files
authored
Merge pull request #27 from ibm-messaging/build-vs-install
Clarify go build vs go install - #21
2 parents 0cb67ae + 1cfa90f commit 6bacebf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,13 @@ export CGO_LDFLAGS="-L$MQ_INSTALLATION_PATH/lib64 -Wl,-rpath,$MQ_INSTALLATION_PA
181181

182182
Confirm the settings are correct by compiling the MQ JMS Golang package, for example as follows; (no errors will be shown if successful)
183183
```bash
184+
# Check that the source files compile successfully
184185
cd $GOPATH/src/github.com/ibm-messaging/mq-golang-jms20/mqjms/
185186
go build
187+
188+
# If you want to install the compiled module into your path for later use
189+
# you can do so by running
190+
go install
186191
```
187192

188193
### Verify the installation by executing the tests

0 commit comments

Comments
 (0)