ROOT Version: 6.32.02
Platform: linuxx8664gcc
Compiler: g++ (GCC) 11.4.1 20231218 (Red Hat 11.4.1-3)
In previous version (e.g. v6.22) I am able to pass extra arguments to scripts like this:
root myscript.C -d 150
where a warning about “macro 150 not found” will be shown but the program runs fine. In the script I can check the arguments with gApplication->Argv() and process accordingly.
Now in v6.32, it will complain that
root: unrecognized option '-d'
root: unrecognized option '150'
and quits.
So is this change documented somewhere? Is it possible to continue working this way [working with gApplication->Argv() in scripts]? Thanks!