Skip to content

Commit bf29336

Browse files
jkwak-workcsyonghe
andauthored
Fix LLVM compile error on Windows (shader-slang#4658)
The following compile error is observed when build with LLVM on Windows: ``` D:/sbf/git/slang/test_wsl/source/slang-glslang/slang-glslang.cpp:39:31: error: static assertion expression is not an integral constant expression 39 | SLANG_COMPILE_TIME_ASSERT(SLANG_OFFSET_OF(TBuiltInResource, limits) > 0); | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` To address the problem, SLANG_OFFSET_OF is defined as `offsetof` when `__clang__` is defined. Co-authored-by: Yong He <yonghe@outlook.com>
1 parent 335c1a2 commit bf29336

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

include/slang.h

+3-6
Original file line numberDiff line numberDiff line change
@@ -254,15 +254,16 @@ convention for interface methods.
254254

255255
// GCC Specific
256256
#if SLANG_GCC_FAMILY
257-
258257
# define SLANG_NO_INLINE __attribute__((noinline))
259258
# define SLANG_FORCE_INLINE inline __attribute__((always_inline))
260259
# define SLANG_BREAKPOINT(id) __builtin_trap();
261260
# define SLANG_ALIGN_OF(T) __alignof__(T)
261+
#endif // SLANG_GCC_FAMILY
262262

263+
#if SLANG_GCC_FAMILY || defined(__clang__)
263264
// Use the builtin directly so we don't need to have an include of stddef.h
264265
# define SLANG_OFFSET_OF(T, ELEMENT) __builtin_offsetof(T, ELEMENT)
265-
#endif // SLANG_GCC_FAMILY
266+
#endif
266267

267268
#ifndef SLANG_OFFSET_OF
268269
# define SLANG_OFFSET_OF(T, ELEMENT) (size_t(&((T*)1)->ELEMENT) - 1)
@@ -290,10 +291,6 @@ convention for interface methods.
290291
# define SLANG_COMPILE_TIME_ASSERT(x) static_assert(x)
291292
#endif
292293

293-
#ifndef SLANG_OFFSET_OF
294-
# define SLANG_OFFSET_OF(X, Y) offsetof(X, Y)
295-
#endif
296-
297294
#ifndef SLANG_BREAKPOINT
298295
// Make it crash with a write to 0!
299296
# define SLANG_BREAKPOINT(id) (*((int*)0) = int(id));

0 commit comments

Comments
 (0)