#!/usr/bin/env bash # shellcheck disable=SC2086 # we want word splitting # When changing this file, you need to bump the following # .gitlab-ci/image-tags.yml tags: # DEBIAN_BUILD_TAG # FEDORA_X86_64_BUILD_TAG uncollapsed_section_start bindgen "Building bindgen" BINDGEN_VER=0.71.1 CBINDGEN_VER=0.26.0 # bindgen RUSTFLAGS='-L native=/usr/local/lib' cargo install \ bindgen-cli --version ${BINDGEN_VER} \ --locked \ -j ${FDO_CI_CONCURRENT:-4} \ --root /usr/local # cbindgen RUSTFLAGS='-L native=/usr/local/lib' cargo install \ cbindgen --version ${CBINDGEN_VER} \ --locked \ -j ${FDO_CI_CONCURRENT:-4} \ --root /usr/local section_end bindgen