You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+40-9Lines changed: 40 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,7 @@
2
2
3
3
This repository demonstrates how you can call IBM MQ from applications written in the Go language.
4
4
5
-
> **NOTICE**: Please ensure that you use a dependency management tool such as [dep](https://github.com/golang/dep) or [Glide](http://glide.sh/), and add a specific version dependency.
6
-
7
-
This repository previously contained sample programs that exported MQ statistics to
5
+
This repository previously contained programs that exported MQ statistics to
8
6
some monitoring packages. These have now been moved to a
9
7
[GitHub repository called mq-metric-samples](https://github.com/ibm-messaging/mq-metric-samples).
10
8
@@ -56,8 +54,7 @@ but subsequent steps are independent of the platform.
56
54
### Linux
57
55
58
56
* Install the Go runtime and compiler. On Linux, the packaging may vary but a typical
59
-
directory for the code is `/usr/lib/golang`.
60
-
The compiler should be at least version 10. If you see an error similar to "ld: NULL not defined"
57
+
directory for the code is `/usr/lib/golang`. If you see an error similar to "ld: NULL not defined"
61
58
when building a program then it is likely you need to upgrade your compiler.
62
59
63
60
@@ -70,7 +67,7 @@ when building a program then it is likely you need to upgrade your compiler.
70
67
export GOPATH=$HOME/gowork
71
68
```
72
69
73
-
* On Linux, you must set environment variables to permit some compile/link flags. This is due to a security fix in the compiler.
70
+
* On Linux, some versions of the compiler have required that you set environment variables to permit some compile/link flags. Recent versions of Go seem to effectively include this fix in the compiler so that the export is no longer necessary.
0 commit comments