Skip to content
Snippets Groups Projects
Commit 615e7a33 authored by Abhinav Singh's avatar Abhinav Singh
Browse files

minor macOS gcc fix and writing example makefile in home

parent 89d0d5b5
No related branches found
No related tags found
No related merge requests found
...@@ -360,7 +360,7 @@ else ...@@ -360,7 +360,7 @@ else
elif [ x"$CXX" == x"clang++" ]; then elif [ x"$CXX" == x"clang++" ]; then
./script/install_BOOST.sh $i_dir $ncore clang ./script/install_BOOST.sh $i_dir $ncore clang
else else
if [ x"$CXX" == x"g++" ]; then if [ x"$CXX" == x"g++*" ]; then
if [ x"$is_apple_llvm" == x"yes" ]; then if [ x"$is_apple_llvm" == x"yes" ]; then
./script/install_BOOST.sh $i_dir $ncore clang ./script/install_BOOST.sh $i_dir $ncore clang
else else
...@@ -609,6 +609,7 @@ fi ...@@ -609,6 +609,7 @@ fi
echo "$bash_path" > $VARS_FILE_LOCATION/openfpm_vars echo "$bash_path" > $VARS_FILE_LOCATION/openfpm_vars
echo "$bash_library" >> $VARS_FILE_LOCATION/openfpm_vars echo "$bash_library" >> $VARS_FILE_LOCATION/openfpm_vars
echo "export PURE_PYTHON=1" >> $VARS_FILE_LOCATION/openfpm_vars echo "export PURE_PYTHON=1" >> $VARS_FILE_LOCATION/openfpm_vars
cp example.mk ~/.Openfpm.mk
if [ x"$platform" = x"osx" ]; then if [ x"$platform" = x"osx" ]; then
echo "TMPDIR=/tmp/" >> $VARS_FILE_LOCATION/openfpm_vars echo "TMPDIR=/tmp/" >> $VARS_FILE_LOCATION/openfpm_vars
......
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