@@ -6,6 +6,7 @@ module CommandArguments
66 use VersionModule, only: VERSION, MFVNAM, IDEVELOPMODE, &
77 FMTDISCLAIMER, write_license
88 use DfnSpecModule, only: write_spec
9+ use FeatureFlagsModule, only: developmode
910 use CompilerVersion
1011 use SimVariablesModule, only: istdout, isim_level, &
1112 simfile, simlstfile, simstdout, &
@@ -171,6 +172,7 @@ subroutine GetCommandLineArguments()
171172 call write_license()
172173 case (' -SPEC' , ' --SPEC' )
173174 lstop = .TRUE.
175+ call developmode(' --spec is a development feature.' , istdout)
174176 call write_spec()
175177 case (' -CO' , ' --COMPILER-OPT' )
176178 lstop = .TRUE.
@@ -277,7 +279,6 @@ subroutine write_usage(header, cexe)
277279 &' -lic --license Display program license information.',/,&
278280 &' -c --compiler Display compiler information.',/,&
279281 &' -co --compiler-opt Display compiler options.',/,&
280- &' -spec --spec Emit embedded DFN input spec to stdout.',/,&
281282 &' -s --silent All STDOUT to mfsim.stdout.',/," // &
282283 " ' -l <str> --level <str> STDOUT output to screen based on <str>.',/,&
283284 &' <str>=summary Limited output to STDOUT.',/,&
0 commit comments