Skip to content
Snippets Groups Projects
Commit 361d3dae authored by Pieter Donker's avatar Pieter Donker
Browse files

removed checking for ipx file in set_quartus

parent fe3132d0
Branches
Tags
No related merge requests found
...@@ -70,25 +70,8 @@ do ...@@ -70,25 +70,8 @@ do
. ${RADIOHDL_GEAR}/set_config_variable $verbose $quartus_config_file ${bd_name}_environment_variables --is-group --optional . ${RADIOHDL_GEAR}/set_config_variable $verbose $quartus_config_file ${bd_name}_environment_variables --is-group --optional
done done
# Finally check if user_component.ipx file of the altera package at least contains
# the paths we need for HDL.
package_ipx=${QUARTUS_DIR}/ip/altera/user_components.ipx
minimal_ipx=${RADIOHDL_GEAR}/quartus/minimal_user_components.ipx
# for each path found in minimal set, try to find it in package file
grep "<path path=" $minimal_ipx | while read -r this_path
do
this_path=`echo $this_path | cut --delimiter='"' -f2`
if grep -q "$this_path" $package_ipx ; then
:
# echo "Found $this_path in $package_ipx"
else
hdl_error $0 "can't find $this_path in ${package_ipx} Check your ipx setting."
fi
done
# TODO: move to hdl_tool_quartus.cfg : user_environment_variables ??? # TODO: move to hdl_tool_quartus.cfg : user_environment_variables ???
export RADIOHDL_GIT_REVISION=`cd $RADIOHDL_WORK; git describe; cd - | grep V` export RADIOHDL_GIT_REVISION=`cd $RADIOHDL_GEAR; git describe; cd - | grep V`
export UNB_COMPILE_STAMPS=1 export UNB_COMPILE_STAMPS=1
unset buildset_config_file quartus_config_file bd_name verbose unset buildset_config_file quartus_config_file bd_name verbose
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment