Skip to content

Commit

Permalink
Merge r258142 - Build failure on ppc64le if __unix is undefined
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=207906

Patch by Mike Gorse <mgorse@suse.com> on 2020-03-09
Reviewed by Yusuke Suzuki.

* bmalloc/BPlatform.h: Check for __unix__ along with __unix.
  • Loading branch information
mgorse authored and aperezdc committed Mar 14, 2020
1 parent af115d3 commit 2f24e40
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Source/bmalloc/ChangeLog
@@ -1,3 +1,12 @@
2020-03-09 Mike Gorse <mgorse@suse.com>

Build failure on ppc64le if __unix is undefined
https://bugs.webkit.org/show_bug.cgi?id=207906

Reviewed by Yusuke Suzuki.

* bmalloc/BPlatform.h: Check for __unix__ along with __unix.

2019-08-26 Yusuke Suzuki <ysuzuki@apple.com>

[bmalloc] Disable IsoHeap completely if DebugHeap is enabled
Expand Down
2 changes: 1 addition & 1 deletion Source/bmalloc/bmalloc/BPlatform.h
Expand Up @@ -40,7 +40,7 @@
#define BOS_DARWIN 1
#endif

#ifdef __unix
#if defined(__unix) || defined(__unix__)
#define BOS_UNIX 1
#endif

Expand Down

0 comments on commit 2f24e40

Please sign in to comment.