summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshipujin <shipujin.t@gmail.com>2019-08-20 13:24:57 +0800
committerAliaksey Kandratsenka <alkondratenko@gmail.com>2020-02-09 22:59:33 -0800
commit31024506c543132adb315b8de89d5faa85e0ff0e (patch)
treee31ff4fc6fdc803d98eb1acb2d2fe81b72e7be4c
parentfe62a0baab87ba3abca12f4a621532bf67c9a7d2 (diff)
downloadgperftools-31024506c543132adb315b8de89d5faa85e0ff0e.tar.gz
Add mips64* support
-rw-r--r--src/base/linux_syscall_support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/linux_syscall_support.h b/src/base/linux_syscall_support.h
index 199061a..e609559 100644
--- a/src/base/linux_syscall_support.h
+++ b/src/base/linux_syscall_support.h
@@ -135,7 +135,7 @@
* Porting to other related platforms should not be difficult.
*/
#if (defined(__i386__) || defined(__x86_64__) || defined(__arm__) || \
- defined(__mips__) || defined(__PPC__) || \
+ defined(__mips__) || defined(__mips64) || defined(__mips64el__) || defined(__PPC__) || \
defined(__aarch64__) || defined(__s390__)) \
&& (defined(__linux))