mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

* Fix Windows system library dependencies in Boost rules * Fix missing utf8cpp source and header files in arrow target
15 lines
345 B
Diff
15 lines
345 B
Diff
diff --git BUILD.boost BUILD.boost
|
|
--- BUILD.boost
|
|
+++ BUILD.boost
|
|
@@ -313,1 +313,9 @@ boost_library(name = "asio",
|
|
- linkopts = ["-lpthread"],
|
|
+ linkopts = select({
|
|
+ ":linux": [
|
|
+ "-lpthread",
|
|
+ ],
|
|
+ ":osx_x86_64": [
|
|
+ "-lpthread",
|
|
+ ],
|
|
+ "//conditions:default": [],
|
|
+ }),
|
|
--
|