Skip to content
This repository was archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
re PR sanitizer/86012 (libsanitizer build failure on sparc64-linux-gnu)
Browse files Browse the repository at this point in the history
2018-05-31  Matthias Klose  <doko@ubuntu.com>

        PR sanitizer/86012
        * sanitizer_common/sanitizer_platform_limits_posix.cc: Define
        SIZEOF_STRUCT_USTAT for 32bit sparc.

From-SVN: r260990
  • Loading branch information
doko42 authored and Matthias Klose committed May 31, 2018
1 parent 568421b commit 5b87c1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions libsanitizer/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2018-05-31 Matthias Klose <doko@ubuntu.com>

PR sanitizer/86012
* sanitizer_common/sanitizer_platform_limits_posix.cc: Define
SIZEOF_STRUCT_USTAT for 32bit sparc.

2018-05-24 H.J. Lu <hongjiu.lu@intel.com>

PR sanitizer/85835
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ namespace __sanitizer {
|| defined(__x86_64__)
#define SIZEOF_STRUCT_USTAT 32
#elif defined(__arm__) || defined(__i386__) || defined(__mips__) \
|| defined(__powerpc__) || defined(__s390__)
|| defined(__powerpc__) || defined(__s390__) || defined(__sparc__)
#define SIZEOF_STRUCT_USTAT 20
#else
#error Unknown size of struct ustat
Expand Down

0 comments on commit 5b87c1f

Please sign in to comment.