Skip to content
Snippets Groups Projects
Commit 4f37ab3f authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

fixed missing header, fixed install folder

parent 9c4f607a
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -8,12 +8,12 @@ if [ $# -ne 2 ]; then ...@@ -8,12 +8,12 @@ if [ $# -ne 2 ]; then
fi fi
if [ ! -d "$1" ]; then if [ ! -d "$1" ]; then
echo "Folder $1 does not exist." echo "Build folder $1 does not exist."
exit 1 exit 1
fi fi
if [ ! -d "$2" ]; then if [ -d "$2" ]; then
echo "Folder $2 does not exist." echo "Install folder $2 already exists."
exit 1 exit 1
fi fi
...@@ -21,6 +21,7 @@ BUILD_FOLDER="$1" ...@@ -21,6 +21,7 @@ BUILD_FOLDER="$1"
INSTALL_FOLDER="$2" INSTALL_FOLDER="$2"
cd $BUILD_FOLDER cd $BUILD_FOLDER
touch $INSTALL_FOLDER
make install make install
export PYTHONPATH=$INSTALL_FOLDER export PYTHONPATH=$INSTALL_FOLDER
python -c 'import hysop; print hysop' python -c 'import hysop; print hysop'
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#define HYSOP_FFTW3_H #define HYSOP_FFTW3_H
#include <complex> #include <complex>
#include <stdexcept>
#include <fftw3.h> #include <fftw3.h>
#ifdef HAS_QUADMATHS #ifdef HAS_QUADMATHS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment