We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef80584 commit 1ab772aCopy full SHA for 1ab772a
1 file changed
scorep/__main__.py
@@ -50,6 +50,14 @@ def scorep_main(argv=None):
50
no_instrumenter = True
51
elif elem == "--noinstrumenter":
52
53
+ elif elem == "--io=runtime:posix" or elem == "--io=posix":
54
+ if "SCOREP_IO_POSIX" in os.environ:
55
+ print_err("scorep: Warning: The option '--io=runtime:posix' is deprecated.")
56
+ print_err(" Please set the environment variable 'SCOREP_IO_POSIX=true' instead.")
57
+ else
58
+ print_err("scorep: The option '--io=runtime:posix' is deprecated. ")
59
+ print_err(" The environment variable 'SCOREP_IO_POSIX=true' is set and will be used.")
60
+ os.environ["SCOREP_IO_POSIX"] = "true"
61
elif "--instrumenter-type" in elem:
62
param = elem.split("=")
63
instrumenter_type = param[1]
0 commit comments