Hello all,
i'm trying to write a tcl script which sets some parameters on an ipcore in my qsys design. Therfore I call the program qsys-script as following:
The content of the script myscript.tcl now sets some parameters with set_instance_parameter_value and saves the script with "save_system"!
This works as expected but the next step is to actually pass some parameters to my script like this:
Sadly somehow the variables argc and argv are not accessible in the tcl environment. So is there a way to hadle this?
best regards
Thomas
i'm trying to write a tcl script which sets some parameters on an ipcore in my qsys design. Therfore I call the program qsys-script as following:
Code:
qsys-script --system-file=mysystem.qsys --package-version=13.0 --script=myscript.tcl
This works as expected but the next step is to actually pass some parameters to my script like this:
Code:
qsys-script --system-file=mysystem.qsys --package-version=13.0 --script=myscript.tcl arg0 arg1
best regards
Thomas