From 0d684bc66c9c0e71b70e98c57545164eb1ffe9b1 Mon Sep 17 00:00:00 2001 From: Chen Yufei Date: Sat, 26 Mar 2022 15:07:59 +0800 Subject: [PATCH] arrow: remove message about dependency conflicts. This will break parsing xrepo fetch output. --- packages/a/arrow/xmake.lua | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/packages/a/arrow/xmake.lua b/packages/a/arrow/xmake.lua index 94d42e4ed..d42d601de 100644 --- a/packages/a/arrow/xmake.lua +++ b/packages/a/arrow/xmake.lua @@ -16,7 +16,7 @@ package("arrow") add_configs("parquet", {description = "Apache Parquet libraries and Arrow integration", default = false, type = "boolean"}) add_configs("plasma", {description = "Plasma Shared Memory Object Store", default = false, type = "boolean"}) -- After install with python enabled, the pyarrow package can be built by following command: - -- cd /arrow/python + -- cd /python -- export CMAKE_PREFIX_PATH= -- # export options that's enabled for the c++ install, e.g. -- export PYARROW_WITH_PARQUET=1 @@ -85,15 +85,6 @@ package("arrow") package:add("deps", "zstd") end if package:config("parquet") then - cprint([[ -${yellow}In case of boost dependency conflicts, please use following code (order is important): - - local boost_config = {configs = {system = true}} -- change this according to what your need - add_requires("thrift") - add_requireconfs("thrift.boost", boost_config) - add_requires("arrow", {configs = {parquet = true}}) - add_requireconfs("arrow.boost", boost_config) -]]) package:add("deps", "thrift", configs) end end)