mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 14:48:54 +08:00
1e817f48df
* Fix Windows system library dependencies in Boost rules * Fix missing utf8cpp source and header files in arrow target
16 lines
345 B
Diff
16 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": [],
|
|
+ }),
|
|
--
|