Skip to content

Commit

Permalink
update thirdparty packages (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex authored Jul 21, 2024
1 parent d57cafc commit 8c068f3
Show file tree
Hide file tree
Showing 179 changed files with 11,054 additions and 3,717 deletions.
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Files: test/snl/formats/verilog/backend/references/*
Copyright: 2022 The Naja Authors.
License: CC0-1.0

Files: thirdparty/spdlog-1.13.0/*
Files: thirdparty/spdlog-1.14.1/*
Source: https://github.com/gabime/spdlog
Copyright: 2016 Gabi Melman.
License: MIT
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ option(BUILD_ONLY_DOC "Only configure to build Doxygen documentation" OFF)

set(NAJA_CXX_WARNINGS -Werror -Wall -pedantic-errors -Wconversion -Wsign-conversion -Wextra -Wno-unused-parameter)

set(ARGPARSE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/argparse-3.0/include)
set(SPDLOG_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/spdlog-1.13.0/include)
set(ARGPARSE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/argparse-3.1/include)
set(SPDLOG_DIR ${CMAKE_CURRENT_SOURCE_DIR}/thirdparty/spdlog-1.14.1/include)

add_library(coverage_config INTERFACE)
option(CODE_COVERAGE "Enable coverage reporting" OFF)
Expand Down
2 changes: 0 additions & 2 deletions src/apps/naja_edit/NajaEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,6 @@ int main(int argc, char* argv[]) {
}
}



if (optimizationType == OptimizationType::DLE) {
const auto start{std::chrono::steady_clock::now()};
SPDLOG_INFO("Starting removal of loadless logic");
Expand Down
2 changes: 1 addition & 1 deletion src/optimization/RemoveLoadlessLogic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void LoadlessLogicRemover::removeLoadlessLogic() {
report_ = collectStatistics();
removeLoadlessInstances(SNLUniverse::get()->getTopDesign(),
loadlessInstances_);
spdlog::info(report_);
//spdlog::info(report_);
DNL::destroy();
}

Expand Down
2 changes: 0 additions & 2 deletions test/core/NajaPrivatePropertyTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,8 @@ class TestPrivateProperty: public NajaPrivateProperty {
}
};


}


class NajaPrivatePropertyTest: public ::testing::Test {
protected:
void SetUp() override {
Expand Down
Loading

0 comments on commit 8c068f3

Please sign in to comment.