summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Niklas Hasse <jhasse@bixense.com>2018-11-05 19:07:05 (GMT)
committerGitHub <noreply@github.com>2018-11-05 19:07:05 (GMT)
commit9342a7e5ff660c421e9cedec6bb2d822dce9a7f8 (patch)
tree9c57c82ae74f87c919356b552e06e5c79affa599 /src
parent3841023a44621e8d8133e9eb6e79e26481dc0bc3 (diff)
parent056633514fcb735f2a11a1354d71896262e1b92c (diff)
downloadNinja-9342a7e5ff660c421e9cedec6bb2d822dce9a7f8.zip
Ninja-9342a7e5ff660c421e9cedec6bb2d822dce9a7f8.tar.gz
Ninja-9342a7e5ff660c421e9cedec6bb2d822dce9a7f8.tar.bz2
Merge pull request #1457 from V-for-Vasili/AIX-support
Port to AIX platform
Diffstat (limited to 'src')
-rw-r--r--src/disk_interface.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/disk_interface.cc b/src/disk_interface.cc
index 7eb44b2..7351715 100644
--- a/src/disk_interface.cc
+++ b/src/disk_interface.cc
@@ -212,6 +212,8 @@ TimeStamp RealDiskInterface::Stat(const string& path, string* err) const {
// For bionic, C and POSIX API is always enabled.
// For solaris, see https://docs.oracle.com/cd/E88353_01/html/E37841/stat-2.html.
return (int64_t)st.st_mtim.tv_sec * 1000000000LL + st.st_mtim.tv_nsec;
+#elif defined(_AIX)
+ return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n;
#else
return (int64_t)st.st_mtime * 1000000000LL + st.st_mtimensec;
#endif