Skip to content
Snippets Groups Projects
Commit 68533ba3 authored by Sujen Shah's avatar Sujen Shah
Browse files

Update sconsConfigFile.py replace -fallow-argument-mismatch with -Wno-argument-mismatch

parent 24a0f0bd
No related branches found
No related tags found
No related merge requests found
Pipeline #14358 failed with stage
in 5 minutes and 25 seconds
...@@ -35,7 +35,7 @@ import sys ...@@ -35,7 +35,7 @@ import sys
COMPILER_OPTIONS ={'COMPILER_OPTIMIZATION':'-O2','COMPILER_WARNING':'-Wall'} COMPILER_OPTIONS ={'COMPILER_OPTIMIZATION':'-O2','COMPILER_WARNING':'-Wall'}
LINKER_OPTIONS ={'LINKFLAGS':'-fopenmp'} # some systems don't need it, but ubuntu does LINKER_OPTIONS ={'LINKFLAGS':'-fopenmp'} # some systems don't need it, but ubuntu does
GFORTRANFLAGS = ['-ffixed-line-length-none' ,'-fno-second-underscore', '-fPIC','-fno-range-check', '-fallow-argument-mismatch'] GFORTRANFLAGS = ['-ffixed-line-length-none' ,'-fno-second-underscore', '-fPIC','-fno-range-check', '-Wno-argument-mismatch']
GCCFLAGS = ['-fPIC'] GCCFLAGS = ['-fPIC']
if 'DEVELOPER' in os.environ: if 'DEVELOPER' in os.environ:
GFORTRANFLAGS.append('-fbounds-check') GFORTRANFLAGS.append('-fbounds-check')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment