diff options
author | Henrik Nord <[email protected]> | 2018-09-25 13:14:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-09-25 13:14:15 +0200 |
commit | 1d5d8a8c5c7cc8f0e011bb121ef21787ece2be58 (patch) | |
tree | 3fa24b062974d518e000196187d4a0bd9a44097d /lib/os_mon | |
parent | e6c3dd9f701d354c06b9b1b043a3d7e9cc050b1c (diff) | |
parent | 239aa002d48b6c1c9a67833ddb43bab2d92d70cb (diff) | |
download | otp-1d5d8a8c5c7cc8f0e011bb121ef21787ece2be58.tar.gz otp-1d5d8a8c5c7cc8f0e011bb121ef21787ece2be58.tar.bz2 otp-1d5d8a8c5c7cc8f0e011bb121ef21787ece2be58.zip |
Merge pull request #1937 from grooverdan/travis
fix for ppc64le / add travis test for ppc64le
OTP-15313
Diffstat (limited to 'lib/os_mon')
-rw-r--r-- | lib/os_mon/src/memsup.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/os_mon/src/memsup.erl b/lib/os_mon/src/memsup.erl index 9d6447430d..b69d657aa7 100644 --- a/lib/os_mon/src/memsup.erl +++ b/lib/os_mon/src/memsup.erl @@ -701,6 +701,7 @@ get_os_wordsize_with_uname() -> "sparc64" -> 64; "amd64" -> 64; "ppc64" -> 64; + "ppc64le" -> 64; "s390x" -> 64; _ -> 32 end. |