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
3df4032a
Commit
3df4032a
authored
1 year ago
by
Pieter Donker
Browse files
Options
Downloads
Plain Diff
Merge branch '
RTSD-56
' into 'master'
L~
RTSD-56
, backup Closes
RTSD-56
See merge request desp/hdl!325
parents
20fe6def
feca4945
No related branches found
Branches containing commit
No related tags found
1 merge request
!325
L~RTSD-56, backup
Pipeline
#50073
passed
1 year ago
Stage: linting
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
applications/ta2/doc/README.txt
+0
-1
0 additions, 1 deletion
applications/ta2/doc/README.txt
doc/erko_howto_tools.txt
+0
-2
0 additions, 2 deletions
doc/erko_howto_tools.txt
init_hdl.sh
+19
-0
19 additions, 0 deletions
init_hdl.sh
with
19 additions
and
3 deletions
applications/ta2/doc/README.txt
+
0
−
1
View file @
3df4032a
...
...
@@ -54,7 +54,6 @@ The ta2 project folder contains 4 sub-folders:
# Altera, Mentor and modelsim_altera_libs dir
export ALTERA_DIR=/home/software/Altera
export MENTOR_DIR=/home/software/Mentor
export MODELSIM_ALTERA_LIBS_DIR=/home/software/modelsim_altera_libs
. ${GIT}/radiohdl/init_radiohdl.sh
...
...
This diff is collapsed.
Click to expand it.
doc/erko_howto_tools.txt
+
0
−
2
View file @
3df4032a
...
...
@@ -43,7 +43,6 @@
* bashrc defines root directories that contain one or more versions of tool installations
- define MENTOR_DIR : modelsim installations
- define ALTERA_DIR : altera installations
- define MODELSIM_ALTERA_LIBS_DIR : compiled modelsim simulation libraries for altera components
- LM_LICENSE_FILE=<our_license@our_compagny>
...
...
@@ -87,7 +86,6 @@ source also radiohdl tools
> compile_altera_simlibs unb1 # creates build/unb1/hdl_libraries_ip_stratixiv.txt
# creates build/quartus/<tool version> simulation models that need to be moved
# manually to $MODELSIM_ALTERA_LIBS_DIR/<tool version>
> generate_ip_libs unb1 # creates build/unb1/qmegawiz/
# creates build/unb1/quartus_sh --> empty dir, why is it there?
...
...
This diff is collapsed.
Click to expand it.
init_hdl.sh
+
19
−
0
View file @
3df4032a
...
...
@@ -54,6 +54,25 @@ if [[ ! -d "${HDL_BUILD_DIR}" ]]; then
echo
"
${
HDL_BUILD_DIR
}
"
mkdir
"
${
HDL_BUILD_DIR
}
"
fi
# set hdl_build_quartus dir
export
HDL_BUILD_QUARTUS_DIR
=
${
HDL_BUILD_DIR
}
/quartus
if
[[
!
-d
"
${
HDL_BUILD_QUARTUS_DIR
}
"
]]
;
then
echo
"make hdl/build/quartus dir"
echo
"
${
HDL_BUILD_QUARTUS_DIR
}
"
mkdir
"
${
HDL_BUILD_QUARTUS_DIR
}
"
echo
"Do not remove this dir, it is used by modelsim_altera_libs symlink"
>
${
HDL_BUILD_QUARTUS_DIR
}
/readme.txt
fi
export
MODELSIM_ALTERA_LIBS_DIR
=
${
HDL_BUILD_DIR
}
/modelsim_altera_libs
if
[[
-L
"
${
MODELSIM_ALTERA_LIBS_DIR
}
"
]]
&&
[[
-e
"
${
MODELSIM_ALTERA_LIBS_DIR
}
"
]]
;
then
echo
"
${
MODELSIM_ALTERA_LIBS_DIR
}
is a valid symlink"
else
echo
"make a symlink for modelsim_altera_libs dir"
echo
"
${
MODELSIM_ALTERA_LIBS_DIR
}
"
ln
-s
"
${
HDL_BUILD_QUARTUS_DIR
}
"
"
${
MODELSIM_ALTERA_LIBS_DIR
}
"
fi
# modelsim uses this sim dir for testing
export
HDL_IOFILE_SIM_DIR
=
${
HDL_BUILD_DIR
}
/sim
if
[[
!
-d
"
${
HDL_IOFILE_SIM_DIR
}
"
]]
;
then
...
...
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