ray/thirdparty/patches/boost-interlocked-prefer-intrinsics.patch
mehrdadn 1e817f48df Fix Arrow and Windows linking issues in Bazel (#6546)
* Fix Windows system library dependencies in Boost rules

* Fix missing utf8cpp source and header files in arrow target
2019-12-20 11:53:20 -08:00

10 lines
311 B
Diff

diff --git boost/detail/interlocked.hpp boost/detail/interlocked.hpp
--- boost/detail/interlocked.hpp
+++ boost/detail/interlocked.hpp
@@ -21,1 +21,1 @@
-#if defined( BOOST_USE_WINDOWS_H )
+#if 0
@@ -33,1 +33,1 @@
-#elif defined( BOOST_USE_INTRIN_H )
+#elif defined( BOOST_USE_INTRIN_H ) || defined(_WIN32)
--