mirror of https://github.com/pyodide/pyodide.git
Skip -ffixed-form flag (#1225)
This is only effective when compiling fortran code, which is not what we are doing since we have applied f2c. Future versions of clang forbid specifying the flag when not compiling fortran.
This commit is contained in:
parent
1aea60d91d
commit
747152a008
|
@ -299,6 +299,9 @@ def handle_command(line, args, dryrun=False):
|
|||
# threading is disabled for now
|
||||
if arg == "-pthread":
|
||||
continue
|
||||
# this only applies to compiling fortran code, but we already f2c'd
|
||||
if arg == "-ffixed-form":
|
||||
continue
|
||||
# On Mac, we need to omit some darwin-specific arguments
|
||||
if arg in ["-bundle", "-undefined", "dynamic_lookup"]:
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue