Revision 9dc080096a163b9831606f1c8c527aa3ed129779 authored by Marge Bot on 22 December 2023, 15:01:47 UTC, committed by Marge Bot on 22 December 2023, 15:01:47 UTC
Co-authored-by: Neo <11726174-neo.nomadic@users.noreply.gitlab.com>

Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com>
Approved-by: Killian Delarue <killian.delarue@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11127
2 parent s 7feb97c + 393b01a
Raw File
env.sh
#!/bin/sh

## How to use:
## eval $(scripts/env.sh)

## This script setups the shell environment, to be able to build and
## use the generated executables, including the bytecode version

set -e

script_dir="$(cd "$(dirname "$0")" && pwd -P)"
src_dir="$(dirname "$script_dir")"

## this ensures that opam env hook will not overwrite this script
echo "_opam_env_hook() { :; };"

add_ld_path () {
  echo "CAML_LD_LIBRARY_PATH=\"$src_dir/$1:\$CAML_LD_LIBRARY_PATH\""
}

opam env

## this list should contain all the known shared libraries on Tezos
## to update it the following command may be used
## $ make; find _build/default | grep -e "dll.*\.so\|dylib$"

add_ld_path "_build/default/src/lib_sapling"
back to top