Commit 68f53082 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add install_ispc

parent 8e58467c
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -678,4 +678,20 @@ function edit_requirements_txt_for_downstream_in_subdir()

# }}}


# {{{ install_ispc

function install_ispc()
{
    # https://github.com/ispc/ispc/issues/2240
    # curl -L "https://ci.appveyor.com/api/projects/ispc/ispc/artifacts/build%2Fispc-trunk-linux.tar.gz?job=Environment%3A%20APPVEYOR_BUILD_WORKER_IMAGE%3DUbuntu1604%2C%20LLVM_VERSION%3Dlatest" | tar xfz -
    # export PATH="$(pwd)/ispc-trunk-linux/bin:$PATH"
    curl -L https://github.com/ispc/ispc/releases/download/v1.17.0/ispc-v1.17.0-linux.tar.gz  | tar xfz -
    PATH="$(pwd)/ispc-v1.17.0-linux/bin:$PATH"
    export PATH
}

# }}}


# vim: foldmethod=marker:sw=2