mirror of https://github.com/shirou/gopsutil
Merge pull request #1132 from rasa/rasa/add_arm_support
Add arm/arm64 support on Windows (fixes #916)pull/1134/head
commit
80d5b57405
@ -1,4 +1,5 @@
|
|||||||
// +build windows
|
//go:build (windows && amd64) || (windows && arm64)
|
||||||
|
// +build windows,amd64 windows,arm64
|
||||||
|
|
||||||
package process
|
package process
|
||||||
|
|
@ -1,4 +1,5 @@
|
|||||||
// +build windows
|
//go:build (windows && 386) || (windows && arm)
|
||||||
|
// +build windows,386 windows,arm
|
||||||
|
|
||||||
package process
|
package process
|
||||||
|
|
Loading…
Reference in New Issue