| ... | ... | @@ -31,6 +31,8 @@ typedef char bool; |
| 31 | 31 | #define zig_gnuc |
| 32 | 32 | #elif defined(__TINYC__) |
| 33 | 33 | #define zig_tinyc |
| 34 | #elif defined(__slimcc__) |
| 35 | #define zig_slimcc |
| 34 | 36 | #endif |
| 35 | 37 | |
| 36 | 38 | #define zig_concat(lhs, rhs) lhs##rhs |
| ... | ... | @@ -61,7 +63,7 @@ typedef char bool; |
| 61 | 63 | #define zig_threadlocal thread_local |
| 62 | 64 | #elif __STDC_VERSION__ >= 201112L |
| 63 | 65 | #define zig_threadlocal _Thread_local |
| 64 | | #elif defined(__GNUC__) |
| 66 | #elif defined(__GNUC__) || defined(zig_slimcc) |
| 65 | 67 | #define zig_threadlocal __thread |
| 66 | 68 | #elif _MSC_VER |
| 67 | 69 | #define zig_threadlocal __declspec(thread) |