mirror of https://github.com/pyodide/pyodide.git
Fix scipy build with gfortran >= 10 (#3401)
This commit is contained in:
parent
bddcc22dda
commit
84496124d2
|
@ -358,6 +358,7 @@ def replay_genargs_handle_argument(arg: str) -> str | None:
|
||||||
"-pthread",
|
"-pthread",
|
||||||
# this only applies to compiling fortran code, but we already f2c'd
|
# this only applies to compiling fortran code, but we already f2c'd
|
||||||
"-ffixed-form",
|
"-ffixed-form",
|
||||||
|
"-fallow-argument-mismatch",
|
||||||
# On Mac, we need to omit some darwin-specific arguments
|
# On Mac, we need to omit some darwin-specific arguments
|
||||||
"-bundle", "-undefined", "dynamic_lookup",
|
"-bundle", "-undefined", "dynamic_lookup",
|
||||||
# This flag is needed to build numpy with SIMD optimization which we currently disable
|
# This flag is needed to build numpy with SIMD optimization which we currently disable
|
||||||
|
|
Loading…
Reference in New Issue