Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
Hdlmake
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
15
Issues
15
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
Hdlmake
Commits
80301196
Commit
80301196
authored
Oct 07, 2019
by
Tristan Gingold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: use class attribute STANDARD_LIBS directly.
parent
ffc94a46
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
2 additions
and
16 deletions
+2
-16
active_hdl.py
hdlmake/tools/active_hdl.py
+0
-1
diamond.py
hdlmake/tools/diamond.py
+0
-1
ghdl.py
hdlmake/tools/ghdl.py
+0
-1
icestorm.py
hdlmake/tools/icestorm.py
+0
-1
ise.py
hdlmake/tools/ise.py
+0
-1
isim.py
hdlmake/tools/isim.py
+0
-1
iverilog.py
hdlmake/tools/iverilog.py
+0
-1
libero.py
hdlmake/tools/libero.py
+0
-1
makefile.py
hdlmake/tools/makefile.py
+2
-2
modelsim.py
hdlmake/tools/modelsim.py
+0
-1
planahead.py
hdlmake/tools/planahead.py
+0
-1
quartus.py
hdlmake/tools/quartus.py
+0
-1
riviera.py
hdlmake/tools/riviera.py
+0
-1
vivado.py
hdlmake/tools/vivado.py
+0
-1
vivado_sim.py
hdlmake/tools/vivado_sim.py
+0
-1
No files found.
hdlmake/tools/active_hdl.py
View file @
80301196
...
...
@@ -47,7 +47,6 @@ class ToolActiveHDL(MakefileSim):
def
__init__
(
self
):
super
(
ToolActiveHDL
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolActiveHDL
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolActiveHDL
.
CLEAN_TARGETS
)
def
_makefile_sim_compilation
(
self
):
...
...
hdlmake/tools/diamond.py
View file @
80301196
...
...
@@ -80,7 +80,6 @@ class ToolDiamond(MakefileSyn):
def
__init__
(
self
):
super
(
ToolDiamond
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolDiamond
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolDiamond
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolDiamond
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolDiamond
.
TCL_CONTROLS
)
...
...
hdlmake/tools/ghdl.py
View file @
80301196
...
...
@@ -53,7 +53,6 @@ class ToolGHDL(MakefileSim):
def
__init__
(
self
):
super
(
ToolGHDL
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolGHDL
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolGHDL
.
CLEAN_TARGETS
)
self
.
_simulator_controls
.
update
(
ToolGHDL
.
SIMULATOR_CONTROLS
)
...
...
hdlmake/tools/icestorm.py
View file @
80301196
...
...
@@ -65,7 +65,6 @@ class ToolIcestorm(MakefileSyn):
def
__init__
(
self
):
super
(
ToolIcestorm
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolIcestorm
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolIcestorm
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolIcestorm
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolIcestorm
.
TCL_CONTROLS
)
...
...
hdlmake/tools/ise.py
View file @
80301196
...
...
@@ -126,7 +126,6 @@ $(TCL_CLOSE)'''
def
__init__
(
self
):
super
(
ToolISE
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolISE
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolISE
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolISE
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolISE
.
TCL_CONTROLS
)
...
...
hdlmake/tools/isim.py
View file @
80301196
...
...
@@ -61,7 +61,6 @@ class ToolISim(MakefileSim):
def
__init__
(
self
):
super
(
ToolISim
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolISim
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolISim
.
CLEAN_TARGETS
)
def
_makefile_sim_top
(
self
):
...
...
hdlmake/tools/iverilog.py
View file @
80301196
...
...
@@ -56,7 +56,6 @@ class ToolIVerilog(MakefileSim):
def
__init__
(
self
):
super
(
ToolIVerilog
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolIVerilog
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolIVerilog
.
CLEAN_TARGETS
)
self
.
_simulator_controls
.
update
(
ToolIVerilog
.
SIMULATOR_CONTROLS
)
...
...
hdlmake/tools/libero.py
View file @
80301196
...
...
@@ -77,7 +77,6 @@ class ToolLibero(MakefileSyn):
def
__init__
(
self
):
super
(
ToolLibero
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolLibero
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolLibero
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolLibero
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolLibero
.
TCL_CONTROLS
)
...
...
hdlmake/tools/makefile.py
View file @
80301196
...
...
@@ -37,6 +37,7 @@ class ToolMakefile(object):
HDL_FILES
=
{}
TOOL_INFO
=
{}
STANDARD_LIBS
=
[]
def
__init__
(
self
):
super
(
ToolMakefile
,
self
)
.
__init__
()
...
...
@@ -45,7 +46,6 @@ class ToolMakefile(object):
self
.
_clean_targets
=
{}
self
.
_tcl_controls
=
{}
self
.
_supported_files
=
{}
self
.
_standard_libs
=
[]
self
.
fileset
=
None
self
.
manifest_dict
=
{}
self
.
_filename
=
"Makefile"
...
...
@@ -56,7 +56,7 @@ class ToolMakefile(object):
def
get_standard_libs
(
self
):
"""Get the standard libs supported by the tool"""
return
self
.
_standard_libs
return
self
.
STANDARD_LIBS
def
get_parseable_files
(
self
):
"""Get the parseable HDL file types supported by the tool"""
...
...
hdlmake/tools/modelsim.py
View file @
80301196
...
...
@@ -50,7 +50,6 @@ class ToolModelsim(MakefileVsim):
"$(MODELSIM_INI_PATH)"
,
"modelsim.ini"
)
self
.
additional_deps
.
append
(
"modelsim.ini"
)
self
.
_clean_targets
.
update
(
ToolModelsim
.
CLEAN_TARGETS
)
self
.
_standard_libs
.
extend
(
ToolModelsim
.
STANDARD_LIBS
)
def
_makefile_sim_options
(
self
):
"""Print the Modelsim options to the Makefile"""
...
...
hdlmake/tools/planahead.py
View file @
80301196
...
...
@@ -61,6 +61,5 @@ class ToolPlanAhead(ToolXilinx):
def
__init__
(
self
):
super
(
ToolPlanAhead
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolPlanAhead
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolPlanAhead
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolPlanAhead
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolPlanAhead
.
TCL_CONTROLS
)
hdlmake/tools/quartus.py
View file @
80301196
...
...
@@ -104,7 +104,6 @@ class ToolQuartus(MakefileSyn):
def
__init__
(
self
):
super
(
ToolQuartus
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolQuartus
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolQuartus
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolQuartus
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolQuartus
.
TCL_CONTROLS
)
...
...
hdlmake/tools/riviera.py
View file @
80301196
...
...
@@ -79,7 +79,6 @@ class ToolRiviera(MakefileVsim):
def
__init__
(
self
):
super
(
ToolRiviera
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolRiviera
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolRiviera
.
CLEAN_TARGETS
)
def
_makefile_sim_options
(
self
):
...
...
hdlmake/tools/vivado.py
View file @
80301196
...
...
@@ -81,6 +81,5 @@ class ToolVivado(ToolXilinx):
def
__init__
(
self
):
super
(
ToolVivado
,
self
)
.
__init__
()
self
.
_supported_files
.
update
(
ToolVivado
.
SUPPORTED_FILES
)
self
.
_standard_libs
.
extend
(
ToolVivado
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolVivado
.
CLEAN_TARGETS
)
self
.
_tcl_controls
.
update
(
ToolVivado
.
TCL_CONTROLS
)
hdlmake/tools/vivado_sim.py
View file @
80301196
...
...
@@ -54,7 +54,6 @@ class ToolVivadoSim(MakefileSim):
def
__init__
(
self
):
super
(
ToolVivadoSim
,
self
)
.
__init__
()
self
.
_standard_libs
.
extend
(
ToolVivadoSim
.
STANDARD_LIBS
)
self
.
_clean_targets
.
update
(
ToolVivadoSim
.
CLEAN_TARGETS
)
self
.
_simulator_controls
.
update
(
ToolVivadoSim
.
SIMULATOR_CONTROLS
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment