diff options
author | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2022-11-07 23:31:59 -0600 |
---|---|---|
committer | Stephen Montgomery-Smith <stephen@FreeBSD.org> | 2022-11-07 23:31:59 -0600 |
commit | 39e3b28f5a6da9aa8c39143b003471136eeb2488 (patch) | |
tree | 887a51e75cd1396d675528937a482b8f815ff3c4 /math/octave-forge-mpi/files/patch-Makefile | |
parent | devel/grcov: Update 0.8.12 -> 0.8.13 (diff) |
math/octave-forge-mpi: New port.
Octave bindings for basic Message Passing Interface (MPI) functions for
parallel computing.
Diffstat (limited to 'math/octave-forge-mpi/files/patch-Makefile')
-rw-r--r-- | math/octave-forge-mpi/files/patch-Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/math/octave-forge-mpi/files/patch-Makefile b/math/octave-forge-mpi/files/patch-Makefile new file mode 100644 index 000000000000..3c0b0f293782 --- /dev/null +++ b/math/octave-forge-mpi/files/patch-Makefile @@ -0,0 +1,12 @@ +--- Makefile.orig 2019-03-06 23:19:54 UTC ++++ Makefile +@@ -1,7 +1,7 @@ + MPICC ?= mpicxx +-OFMPIINC ?= $(shell $(MPICC) -showme:compile | sed -e "s/-pthread/ /g") ++OFMPIINC ?= $(shell $(MPICC) -compile_info | sed -e "s/c++ //g") + MPIINC := $(OFMPIINC) +-OFMPILIBS ?= $(shell $(MPICC) -showme:link | sed -e "s/-pthread/ /g") ++OFMPILIBS ?= $(shell $(MPICC) -link_info | sed -e "s/c++ //g") + MPILIBS := $(OFMPILIBS) + MKOCTFILE ?= mkoctfile + |