aboutsummaryrefslogtreecommitdiffstats
path: root/science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-09-21 20:33:16 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-09-21 20:33:16 +0000
commit32d6580239562644e2591437bc1fe0ff1233f348 (patch)
treeb7b24cfed2b6116945682a4b861058986c9f8a9a /science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py
parente29caad7ed2e9ed8b4746cc73df83ffb09bee02c (diff)
science/py-PyFR: Fix the OpenMP computation mode by adding -I and -L flags to the compiler command.
Also fix license.
Diffstat (limited to 'science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py')
-rw-r--r--science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py b/science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py
new file mode 100644
index 000000000000..f77a4b146f77
--- /dev/null
+++ b/science/py-PyFR/files/patch-pyfr_backends_openmp_compiler.py
@@ -0,0 +1,11 @@
+--- pyfr/backends/openmp/compiler.py.orig 2018-03-19 21:34:24 UTC
++++ pyfr/backends/openmp/compiler.py
+@@ -76,6 +76,8 @@ class SourceModule(object):
+ '-Ofast', # Optimise, incl. -ffast-math
+ '-march=native', # Use CPU-specific instructions
+ '-fopenmp', # Enable OpenMP support
++ '-I%%LOCALBASE%%/include', # Add the include directory
++ '-L%%LOCALBASE%%/lib', # Add the library directory
+ '-fPIC', # Generate position-independent code
+ '-o', libname, srcname, # Library and source file names
+ '-lm' # Link against libm