Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SoCTools Flow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
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
SoCLabs
SoCTools Flow
Compare revisions
a3302e548fff525c88fad50b3c10f335391db100 to 1f17b470f5cac96618849b3ece1d4a32af990cc1
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
soclabs/soctools_flow
Select target project
No results found
1f17b470f5cac96618849b3ece1d4a32af990cc1
Select Git revision
Swap
Target
soclabs/soctools_flow
Select target project
soclabs/soctools_flow
1 result
a3302e548fff525c88fad50b3c10f335391db100
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
fix $ to $env conversion for tcl filelist
· 1f17b470
Daniel Newbrook
authored
1 year ago
1f17b470
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/filelist_compile.py
+1
-1
1 addition, 1 deletion
bin/filelist_compile.py
with
1 addition
and
1 deletion
bin/filelist_compile.py
View file @
1f17b470
...
...
@@ -113,7 +113,7 @@ def read_list(filelist, first, incdirs, args):
elif
args
.
makefile
==
True
:
compiled_filelist
.
append
(
"
VERILOG_SOURCES +=
"
+
str
(
line_list
[
1
]).
replace
(
"
$
"
,
"
$env
"
)
+
"
/
"
+
str
(
file
))
else
:
compiled_filelist
.
append
(
"
read_verilog
"
+
str
(
line_list
[
1
]
)
+
"
/
"
+
str
(
file
))
compiled_filelist
.
append
(
"
read_verilog
"
+
str
(
env_var_substitute
(
line_list
[
1
],
tcl
=
True
)).
replace
(
"
$
"
,
"
$env
"
)
+
"
/
"
+
str
(
file
))
else
:
compiled_filelist
.
append
(
line_list
[
1
]
+
"
/
"
+
str
(
file
))
...
...
This diff is collapsed.
Click to expand it.