⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gen_explore_table

📁 synopsys icc 使用参考脚本
💻
字号:
#!/bin/csh -f# This csh file is for two purposes:# 1.Exit if perl path is not found# 2.Exit if perl version is wrong and causing errors############################################################################echo "*ICC DP-RM: Looking for Perl path /usr/bin/perl"set perl_path = /usr/bin/perl   set found_Perl = 0   if ( -e $perl_path ) then	echo  "*ICC DP-RM: $perl_path found"	set found_Perl = 1   endif   if ($found_Perl == 0) then	echo "*ICC DP-RM: $perl_path not found!"        echo "*ICC DP-RM: Exiting without running perl script."        echo "*ICC DP-RM: Please update first line of icc_dp_scripts/gen_explore_table.pl with correct Perl path."	exit   endif#############################################################################echo ""./icc_dp_scripts/gen_explore_table.pl -i $argv[1] -o ./ -f $argv[2]   echo ""echo "*ICC DP-RM: gen_explore_table.pl program has completed."echo ""

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -