Skip to content

Commit

Permalink
Check if PinTable exist before calling gen_bitstream_setting_xml (#1716)
Browse files Browse the repository at this point in the history
* Check if PinTable exist before calling gen_bitstream_setting_xml

* Incremented patch version

---------

Co-authored-by: chungshien-chai <[email protected]>
  • Loading branch information
chungshien-chai and chungshien-chai authored Nov 7, 2024
1 parent 494be28 commit 73e268c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ set(VERSION_MINOR 0)
# Add the spdlog directory to the include path
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard)

set(VERSION_PATCH 436)
set(VERSION_PATCH 437)


option(
Expand Down
3 changes: 2 additions & 1 deletion src/Compiler/CompilerOpenFPGA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3605,7 +3605,8 @@ bool CompilerOpenFPGA::GenerateBitstream() {
if (io_status.first) {
std::filesystem::path design_edit_sdc =
FilePath(Action::Synthesis, "design_edit.sdc");
if (std::filesystem::exists(design_edit_sdc)) {
if (std::filesystem::exists(design_edit_sdc) && !m_PinMapCSV.empty() &&
std::filesystem::exists(m_PinMapCSV)) {
std::string command = CFG_print(
"model_config gen_bitstream_setting_xml -device_size %s -design %s "
"-pin %s "
Expand Down

0 comments on commit 73e268c

Please sign in to comment.