diff options
Diffstat (limited to 'lib/compilers/flang.ts')
-rw-r--r-- | lib/compilers/flang.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/flang.ts b/lib/compilers/flang.ts index 429dfcce8..9ff8fc226 100644 --- a/lib/compilers/flang.ts +++ b/lib/compilers/flang.ts @@ -36,10 +36,10 @@ export class FlangCompiler extends FortranCompiler { if (this.compiler.intelAsm && filters.intel && !filters.binary) { options = options.concat(this.compiler.intelAsm.split(' ')); } - if (!filters.binary) { - options = options.concat('-S'); - } else { + if (filters.binary) { options = options.concat('-g'); + } else { + options = options.concat('-S'); } return options; } |