blob: 53506c9cae933cece7e44c9e4a5e80a8ad0a1612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Index: gcc-5/src/libcilkrts/runtime/sysdep-unix.c
===================================================================
--- gcc-5.orig/src/libcilkrts/runtime/sysdep-unix.c
+++ gcc-5/src/libcilkrts/runtime/sysdep-unix.c
@@ -46,6 +46,11 @@
# define _GNU_SOURCE
#endif
+#ifdef __sun__
+# define _GNU_SOURCE
+# define __EXTENSIONS__
+#endif
+
#include "sysdep.h"
#include "os.h"
#include "bug.h"
|