Skip to content

Commit

Permalink
Fix Cache line size for gcc 6.4.0 (Alpine 3.8.5) on s390x
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Dec 20, 2021
1 parent 43b82c9 commit 6253dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion port/port_posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ extern void InitOnce(OnceType* once, void (*initializer)());
#define ALIGN_AS(n) /*empty*/
#else
#if defined(__s390__)
#if defined(__GNUC__) && __GNUC__ < 6
#if defined(__GNUC__) && __GNUC__ < 7
#define CACHE_LINE_SIZE 64U
#else
#define CACHE_LINE_SIZE 256U
Expand Down

0 comments on commit 6253dd1

Please sign in to comment.