Skip to content
Snippets Groups Projects
Commit 34e09755 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Merge branch 'master' of git.astron.nl:desp/hdl

parents 306ccd9d b1fefd28
Branches
No related tags found
No related merge requests found
......@@ -46,11 +46,17 @@ post_message "Revision name: $revision_name"
# Run adjust PLL script
source "$sdk_root/ip/board/bsp/adjust_plls_a10.tcl"
# Copy flat.rbf to parent directory
file copy -force flat.sof ../flat.sof
# Copy flat.sof and flat.rbf to parent directory
if {[file exists "flat_time_limited.sof"] == 1} {
post_message "Warning: flat.sof and flat.rbf are Time Limited!"
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat_time_limited.sof ../flat.rbf"
file copy -force flat_time_limited.sof ../flat.sof
}
# Convert .sof to .rbf
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat.sof ../flat.rbf"
if {[file exists "flat.sof"] == 1} {
qexec "quartus_cpf -c --option=scripts/rbf_options_file flat.sof ../flat.rbf"
file copy -force flat.sof ../flat.sof
}
if {$fast_compile} {
::aocl_fast_compile::check_logic_utilization $logic_limit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment