summaryrefslogtreecommitdiffstats
path: root/build/setup/build/astra.sh
blob: ed79a1d5dda5f6bc4cb2e00dfe202e6a146f996a (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env bash

set -o errexit

(
    cd build/linux
    ./autogen.sh
    ./configure --with-cuda=/usr/local/cuda --with-python=/usr/bin/python3
    make
    make install
)