1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -ex
source_dir=${1}/c_glib
build_dir=${2}/c_glib
build_root=${2}
: "${ARROW_GLIB_WERROR:=false}"
: "${ARROW_GLIB_VAPI:=true}"
: "${BUILD_DOCS_C_GLIB:=OFF}"
with_doc=$([ "${BUILD_DOCS_C_GLIB}" == "ON" ] && echo "true" || echo "false")
if [ -n "${MSYSTEM:-}" ]; then
# Fix ARROW_HOME when running under MSYS2
ARROW_HOME="$(cygpath --unix "${ARROW_HOME}")"
export ARROW_HOME
fi
PATH="${ARROW_HOME}/bin:${PATH}"
meson_cmake_prefix_path="${ARROW_HOME}"
meson_pkg_config_path="${ARROW_HOME}/lib/pkgconfig"
mkdir -p "${build_dir}"
if [ -n "${VCPKG_DEFAULT_TRIPLET:-}" ]; then
vcpkg_install_root="${build_root}/vcpkg_installed"
vcpkg install \
--x-manifest-root="${source_dir}" \
--x-install-root="${vcpkg_install_root}"
meson_cmake_prefix_path="${vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}:${meson_cmake_prefix_path}"
PKG_CONFIG="${vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}/tools/pkgconf/pkgconf.exe"
export PKG_CONFIG
meson_pkg_config_path="${vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}/lib/pkgconfig:${meson_pkg_config_path}"
# Configure PATH for libraries required by the gobject-introspection generated binary
cpp_vcpkg_install_root="${build_root}/cpp/vcpkg_installed"
PATH="${cpp_vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}/debug/bin:${PATH}"
PATH="${cpp_vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}/bin:${PATH}"
PATH="${vcpkg_install_root}/${VCPKG_DEFAULT_TRIPLET}/bin:${PATH}"
fi
if [ -n "${VCToolsInstallDir:-}" ] && [ -n "${MSYSTEM:-}" ]; then
# Meson finds the gnu link.exe instead of MSVC link.exe when running in MSYS2/git bash,
# so we need to make sure the MSCV link.exe is first in $PATH
PATH="$(cygpath --unix "${VCToolsInstallDir}")/bin/HostX64/x64:${PATH}"
fi
# Build with Meson
meson setup \
--backend=ninja \
--cmake-prefix-path="${meson_cmake_prefix_path}" \
--libdir=lib \
--pkg-config-path="${meson_pkg_config_path}" \
--prefix="${ARROW_HOME}" \
-Ddoc="${with_doc}" \
-Dvapi="${ARROW_GLIB_VAPI}" \
-Dwerror="${ARROW_GLIB_WERROR}" \
"${build_dir}" \
"${source_dir}"
pushd "${build_dir}"
ninja
ninja install
popd
if [ "${BUILD_DOCS_C_GLIB}" == "ON" ]; then
mkdir -p "${build_root}/docs/c_glib"
cp -a "${ARROW_HOME}"/share/doc/*-glib/ "${build_root}/docs/c_glib/"
fi
|