Skip to content

Commit

Permalink
do not test openmp
Browse files Browse the repository at this point in the history
  • Loading branch information
hannorein committed Oct 31, 2023
1 parent 77c5569 commit 7bbf687
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/c_examples/compile_emcc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ do
echo "Working on $dir ..."
opengl_enabled=$(cat $dir/Makefile | grep -c "export OPENGL=1")
mpi_enabled=$(cat $dir/Makefile | grep -c "export MPI=1")
if [ $opengl_enabled -eq $OPENGL ] && [ $mpi_enabled -eq 0 ]; then
openmp_enabled=$(cat $dir/Makefile | grep -c "export OPENMP=1")
if [ $opengl_enabled -eq $OPENGL ] && [ $mpi_enabled -eq 0 ] && [ $openmp_enabled -eq 0 ]; then
mkdir -p $READTHEDOCS_OUTPUT/html/emscripten_c_$dir/
echo "Compiling... "
if [ $OPENGL -eq 1 ]; then
Expand Down

0 comments on commit 7bbf687

Please sign in to comment.