Skip to content
Snippets Groups Projects
Commit 601b265a authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Fixed 'mk all' for Modelsim version >= 10 by using the directory type for vlib.

parent 6902988f
No related branches found
No related tags found
No related merge requests found
...@@ -150,6 +150,19 @@ proc parse_for_libs arg_list { ...@@ -150,6 +150,19 @@ proc parse_for_libs arg_list {
return $libs return $libs
} }
# Create work library
proc do_vlib arg_work {
set modelsimId [vsimId]
set dot_index [string first . $modelsimId]
set modelsimId [string range $modelsimId 0 [expr $dot_index-1]]
if {$modelsimId < 10} {
vlib $arg_work
} else {
# The makefile that is created by vmake relies on using directories in vlib
vlib -type directory $arg_work
}
}
# Extract this lib or all libs that it depends on for arg_lib # Extract this lib or all libs that it depends on for arg_lib
proc extract_all_libs arg_lib { proc extract_all_libs arg_lib {
if {$arg_lib=="all"} { if {$arg_lib=="all"} {
...@@ -214,7 +227,7 @@ proc mk_execute {arg_lib} { ...@@ -214,7 +227,7 @@ proc mk_execute {arg_lib} {
lp $arg_lib lp $arg_lib
# create work library if it does not already exist # create work library if it does not already exist
if {![file exists "$sim/work"]} then { if {![file exists "$sim/work"]} then {
vlib work do_vlib work
} }
global env ;# Make global env() variable known locally. This is necessary for $env(*) in compile IP tcl script, alternatively use $::env(*) in compile IP tcl scrip global env ;# Make global env() variable known locally. This is necessary for $env(*) in compile IP tcl script, alternatively use $::env(*) in compile IP tcl scrip
foreach ip $compile_ip { foreach ip $compile_ip {
...@@ -236,7 +249,7 @@ proc mk_compile {arg_lib} { ...@@ -236,7 +249,7 @@ proc mk_compile {arg_lib} {
if {[file exists "$sim/work"]} then { if {[file exists "$sim/work"]} then {
vdel -lib $sim/work -all vdel -lib $sim/work -all
} }
vlib work do_vlib work
# and then first execute any IP compile scripts # and then first execute any IP compile scripts
mk_execute $arg_lib mk_execute $arg_lib
# and then compile the HDL # and then compile the HDL
...@@ -263,7 +276,7 @@ proc mk_vmake {arg_lib} { ...@@ -263,7 +276,7 @@ proc mk_vmake {arg_lib} {
} }
# recreate work library # recreate work library
vdel -lib $sim/work -all vdel -lib $sim/work -all
vlib work do_vlib work
# and then first execute any IP compile scripts # and then first execute any IP compile scripts
mk_execute $arg_lib mk_execute $arg_lib
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment