Archived
1
This repository has been archived on 2021-06-01. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
304 B
Bash
Executable File

#! /bin/bash
# This is a small wrapper script to handle configuring your library path before executing ODM
set -e
echo "Enabling core dumps"
ulimit -c unlimited
echo "Building deps"
cargo build
echo "Starting python with new flags"
LD_LIBRARY_PATH="$(pwd)/libodm/dist:$LD_LIBRARY_PATH" python3 odm $@