06-26-2020 12:34 AM
Hello,
How can I run vivado with default options
-nolog -nojournal
without typing them every time I run the IDE from shell (Linux environment), and without makig a script that runs vivado from the Xilinx installation dirs ?
Can it be done using a default tcl file ?
Regards,
s.
07-20-2020 01:36 PM
Hi @simozz
If that didn't work, then the best way to run the commands would be to create an alias in Linux. The alias can capture the -nolog and -nojournal commands. You can refer to the link below
https://alvinalexander.com/blog/post/linux-unix/create-aliases/
07-07-2020 05:22 PM
07-13-2020 01:00 AM
Hello @philipwu ,
Is there a particular reason why you do not want to run a script from the installation directory?
No, in fact I thought to use a tcl script file as I wrote in my post.
But I don't know hot to write this tcl file, so what exact instructions I have to use ?
Thanks.
s.
07-13-2020 10:11 AM
07-13-2020 11:18 PM
the steps you mention are elementary. I was referring to what TCL instructions must be used for my purpose.
I took a look into the Vivdo TCL docs but I did not find useful info.
s.
07-14-2020 09:35 AM
Hi @simozz
You can add the command set_param general.maxBackupLogs 0 into the tcl file
Reference post: https://forums.xilinx.com/t5/Vivado-TCL-Community/How-to-disable-backup-log-and-jou-files/td-p/288491
07-16-2020 11:55 AM
Content of /opt/Xilinx/Vivado/2019.2/scripts/Vivado_init.tcl is:
set_param general.maxBackupLogs 0
it seems it's ignored.
s.
07-16-2020 12:32 PM
Hi @philipwu ,
>> Is there a particular reason why you do not want to run a script from the installation directory?
Because it's a major headache to do. In my environment, Vivado installation is on a Linux server in some remote datacenter, and requires root access that I don't have. I'd need to spend time contacting the right people, explaining what to do, and hoping it's not going to affect other users.
Thanks,
07-20-2020 01:36 PM
Hi @simozz
If that didn't work, then the best way to run the commands would be to create an alias in Linux. The alias can capture the -nolog and -nojournal commands. You can refer to the link below
https://alvinalexander.com/blog/post/linux-unix/create-aliases/