diff options
author | takanori-ihara <62980219+takanori-ihara@users.noreply.github.com> | 2020-06-17 11:59:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-16 21:59:20 -0500 |
commit | 84e117b4976c58c713ba8525e701c628043722d0 (patch) | |
tree | 0d6cc4076bcc25fed6576329f0f390f9261b2fa2 /var | |
parent | 896a14af820bd9ebde8488d7fa89d6032a40e3eb (diff) | |
download | spack-84e117b4976c58c713ba8525e701c628043722d0.tar.gz spack-84e117b4976c58c713ba8525e701c628043722d0.tar.bz2 spack-84e117b4976c58c713ba8525e701c628043722d0.tar.xz spack-84e117b4976c58c713ba8525e701c628043722d0.zip |
Add compiler option to use with Fujitsu compiler (#17067)
* Add compiler option to use with Fujitsu compiler
* Fix flake8 error
* remove 1-1_fcc_tf_patch.patch
* fix flake8 error
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/linsys-v/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/linsys-v/package.py b/var/spack/repos/builtin/packages/linsys-v/package.py index cc8e94c26b..545a2a8bec 100644 --- a/var/spack/repos/builtin/packages/linsys-v/package.py +++ b/var/spack/repos/builtin/packages/linsys-v/package.py @@ -50,7 +50,9 @@ class LinsysV(MakefilePackage): ) makefile.filter( r"^CFLAGS\s+=\s-Kfast,openmp", - "CFLAGS=-Ofast {0}".format(self.compiler.openmp_flag), + "CFLAGS=-Ofast -fstrict-aliasing {0}".format( + self.compiler.openmp_flag + ), ) makefile.filter( r"^LIBS\s+=\s-SCALAPACK\s-SSL2BLAMP", |