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
This commit is contained in:
parent
896a14af82
commit
84e117b497
1 changed files with 3 additions and 1 deletions
|
@ -50,7 +50,9 @@ def patch(self):
|
|||
)
|
||||
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",
|
||||
|
|
Loading…
Reference in a new issue