From e963d6425887f0009ed6eb1fa3975760ed16feaf Mon Sep 17 00:00:00 2001 From: seanbsu Date: Thu, 7 Mar 2024 12:56:49 -0700 Subject: [PATCH] testing compiling for elim --- test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.sh b/test.sh index 1d946f8..bb3a024 100755 --- a/test.sh +++ b/test.sh @@ -2,6 +2,8 @@ # Exit script on error set -e +# Compile 'elim' library +g++ -O3 -Wall -shared -std=c++11 -fPIC `python3 -m pybind11 --includes` bindings.cpp cySampleElim.h -o elim`python3-config --extension-suffix` # Lint with flake8 flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics