[libc-commits] [libc] [libc] Add osutils for Windows and make libc and its tests build on Windows target (PR #104676)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Tue Sep 3 16:43:28 PDT 2024
================
@@ -35,7 +35,7 @@
#endif // UINT64_MAX
// int128 / uint128 support
-#if defined(__SIZEOF_INT128__)
+#if defined(__SIZEOF_INT128__) && !defined(LIBC_TARGET_OS_IS_WINDOWS)
----------------
michaelrj-google wrote:
is this necessary? I'm surprised that windows would define `sizeof` for `uint128` without defining the type
https://github.com/llvm/llvm-project/pull/104676
More information about the libc-commits
mailing list