Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
601b265a
Commit
601b265a
authored
10 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Fixed 'mk all' for Modelsim version >= 10 by using the directory type for vlib.
parent
6902988f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/modelsim/commands.do
+16
-3
16 additions, 3 deletions
tools/modelsim/commands.do
with
16 additions
and
3 deletions
tools/modelsim/commands.do
+
16
−
3
View file @
601b265a
...
@@ -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
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment