Skip to content

Commit

Permalink
Corrected typo in compilation files
Browse files Browse the repository at this point in the history
  • Loading branch information
Iximiel committed Dec 7, 2023
1 parent fd2f652 commit 11318e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/fedora39-pycv
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ RUN source /etc/bashrc \
&& cd plugins/pycv \
&& pip3 install pybind11 \
&& ln -s $(realpath ../../regtest/scripts) ./regtest/scripts \
&& ./prepareMakeForDevelop.sh \
&& python_bin=python3 ./prepareMakeForDevelop.sh \
&& make check
2 changes: 1 addition & 1 deletion docker/rocky8-pycv
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ RUN source ./.bashrc \
&& cd plugins/pycv \
&& pip3 install --user pybind11 \
&& ln -s $(realpath ../../regtest/scripts) ./regtest/scripts \
&& ./prepareMakeForDevelop.sh \
&& python_bin=python3 ./prepareMakeForDevelop.sh \
&& make check
2 changes: 1 addition & 1 deletion plugins/pycv/prepareMakeForDevelop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ fi
${plumed_program_name} --no-mpi config makefile_conf
echo "PLUMED_KERNEL=${PLUMED_KERNEL}"
echo "ADDCPPFLAGS=$(${python_config} --cflags --embed) $(${python_bin} -m pybind11 --includes) -I$(${plumed_program_name} --no-mpi info --include-dir)/plumed"
echo "ADDCLDFLAGS=$(PYCV_EXTRA_LDFLAGS) $(${python_config} --ldflags --embed)"
echo "ADDCLDFLAGS=${PYCV_EXTRA_LDFLAGS} $(${python_config} --ldflags --embed)"
} > Make.inc
2 changes: 1 addition & 1 deletion plugins/pycv/standaloneCompile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fi
#-fvisibility=hidden is needed to correct the warnings for the visibility of some pybind11 functionalities
export PLUMED_MKLIB_CFLAGS="$(${python_config} --cflags --embed) $(python -m pybind11 --includes) -fvisibility=hidden"

export PLUMED_MKLIB_LDFLAGS="$(PYCV_EXTRA_LDFLAGS) $(${python_config} --ldflags --embed) $conda_fixup"
export PLUMED_MKLIB_LDFLAGS="${PYCV_EXTRA_LDFLAGS} $(${python_config} --ldflags --embed) $conda_fixup"

echo PLUMED_MKLIB_CFLAGS=$PLUMED_MKLIB_CFLAGS
echo PLUMED_MKLIB_LDFLAGS=$PLUMED_MKLIB_LDFLAGS
Expand Down

0 comments on commit 11318e9

Please sign in to comment.